Note in this example we will use PostgreSQL DBMS, but you can use any DBMS
We will use a database bd_test witch contain a Schema: sch_test and two tables users and test :
CREATE TABLE sch_test.users
(
  id serial NOT NULL,
  username character varying,
  password character varying,
  CONSTRAI...