POSTGRESQL
Why didn’t I think off that before.
$johannes@ubuntu:~$ sudo apt-get install postgresql
$johannes@ubuntu:~$ sudo apt-get install postgresql-doc
login:
sudo -u postgres psql postgres
change password:
\password postgres
create database johannes;
create user johannes;
ctrl D
~$ psql
johannes=>
create table test (a varchar(10));
insert into test (a) values(‘b’);
commit;
\password
CTRL D …..