Open main menu

CDOT Wiki β

Changes

NexJ Express Connecting to PostgreSQL

227 bytes removed, 12:47, 1 December 2010
no edit summary
:: Create a <code>table</code> called 'Mutex' 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 ===
: PostgreSQLAdapter.java
: PostgreSQLSchemaManger.java
 
=== 4- Create the extended PostgreSQL test files ===
: PostgreSQLAdapterTest.java
: PostgreSQLSchemaMangerTest.java
1
edit