Changes

Jump to: navigation, search

NexJ Express Connecting to PostgreSQL

94 bytes added, 11:25, 1 December 2010
2- Create a PostgreSQL database through some scripts
:: Login to the database 'test' with username 'test': <code> psql -U test test </code>
:: Create a <code> Schema </code> called 'test' inside the database 'test' with particular owner 'test': <code> CREATE SCHEMA test AUTHORIZATION test;</code>
:: Create a <code>table</code> called 'mutexMutex' with primary key: <code> CREATE TABLE test.Mutex(id INT PRIMARY KEY); </code>:: Insert a value into the primary key: <code> INSERT INTO test.Mutex(id) VALUES (1); </code>
=== 3- Create the extended PostgreSQL source files ===
1
edit

Navigation menu