Salvo 'LtWorf' Tomaselli 0385478f91 Set encoding in test driver
Python3 handles encoding differently, and files are loaded
according to the locale set on the system.

This means that when building on a locale-less chroot,
the tests will always fail because it will try to load utf-8
and encode it as ASCII.

This forces the encoding. The tests are encoded in utf-8 anyway
so any other encoding set by the locale would cause a failure.
2015-06-13 17:24:38 +02:00
2015-06-13 17:21:43 +02:00
2015-06-01 09:33:47 +02:00
2015-06-08 01:15:14 +02:00
2015-06-01 13:05:39 +02:00
2011-03-04 12:38:00 +00:00
2015-06-01 10:30:01 +02:00
2015-06-06 14:06:02 +02:00
2015-06-08 01:02:56 +02:00
2013-02-10 14:25:30 +01:00
2015-06-02 15:40:11 +02:00
2008-07-17 22:53:32 +00:00
2015-06-13 17:24:38 +02:00
2015-02-19 13:59:41 +01:00
2015-05-31 19:12:10 +02:00
2015-06-07 01:46:47 +02:00
2015-06-01 12:54:52 +02:00
2015-06-01 12:54:52 +02:00
2013-12-27 01:02:04 +01:00
2011-05-02 10:02:06 +00:00

Relational an educational tool to provide a workspace for experimenting with relational algebra, an offshoot of first-order logic.

It provides GUI that can be used for executing relational queries, and also provides a command line interface.

Provides a standalone Python module that can be used for executing relational queries, parsing relational expressions and optimizing them.

Official website

More documentation can be found here http://ltworf.github.io/relational/

Install

Binary download for Windows can be obtained from the website.

For Linux, check your distribution's packages, relational is available on Debian and Ubuntu.

Syntax

These are some valid queries

σage > 25 and rank == weight(A)
σ (name.upper().startswith('J') and age>21 )(people)
Q ⋈ π a,b(A) ⋈ B
ρid➡i,name➡n(A) - π a,b(π a,b(A)) ∩ σage > 25 or rank = weight(A)
π a,b(π a,b(A))
ρid➡i,name➡n(π a,b(A))
A ⋈ B

Run from sources

To launch the application, run

./relational_gui.py

If it needs some dependencies: Qt5, Python 3.4 or greater, PyQt5

It can run on osx but bugreports about that will be rejected.

Description
No description provided
Readme 9.1 MiB
Languages
Python 96.2%
Makefile 1.7%
Roff 1%
Inno Setup 1%