Lab realized as a student at ECN. This app is a python CLI (command line interface) to query a PostgreSQL database. https://github.com/DricomDragon/PythonPostgresLab
|
hace 6 años | |
---|---|---|
SQL | hace 6 años | |
.gitignore | hace 6 años | |
README.md | hace 6 años | |
app_dispatcher.py | hace 6 años | |
connect.py | hace 6 años |
A CLI (Command Line Interface) written in python to query a PostgreSQL database. Lab realized as a student at Ecole Centrale de Nantes (ECN).
Install postgreSQL :
sudo apt install postgresql
Create the database :
#psql
postgres=#create database logistics;
Populate database with tables :
#psql -d logistics -f SQL/create_tables.sql postgres