Difference between revisions of "NexJ Express Connecting to PostgreSQL"

From CDOT Wiki
Jump to: navigation, search
(- Modifications)
Line 2: Line 2:
 
{{NexJ_Express Index}}
 
{{NexJ_Express Index}}
  
 
+
== Setup the postgresql-connection ==
* [[PostgreSQL_Adapter-nexj/test-env/todo |TODOs]]
 
 
 
* [[PostgreSQL_Adapter-nexj/test-env/files | Files to Modify]]
 
 
 
== 1- Setup the postgresql-connection ==
 
 
For testing the connection, the 'AllTests.java' is being used.
 
For testing the connection, the 'AllTests.java' is being used.
 
: Installed the <code> JDBC3 Postgresql Driver, Version 9.0-801 </code> and added it to the libraries in JDK
 
: Installed the <code> JDBC3 Postgresql Driver, Version 9.0-801 </code> and added it to the libraries in JDK

Revision as of 22:04, 9 December 2010

PostgreSQL Adapter for NexJ - Create Test Environment

Setup the postgresql-connection

For testing the connection, the 'AllTests.java' is being used.

Installed the JDBC3 Postgresql Driver, Version 9.0-801 and added it to the libraries in JDK
The driver class which is being used for NexJ Express Model is: org.postgresql.xa.PGXADataSource
The driver is loaded from RelationalDatabaseFragment.java and RelationalDatabase.java
Metadata is loaded from the particular driver
   /* MySQLAdapterTest.java */
      try
      {
         s_metadata = loadMetadata(ADAPTER_NAME);
      }

   /* SQLDataTest.java */
   protected static Metadata loadMetadata(String sAdapter)
   {
      Properties props = SysUtil.getConfigProperties();  // sets DEFAULT_CONFIG_URL = '/' + NAMESPACE + "/default.config"
      props = new Properties(props);
      props.setProperty(XMLMetadataLoader.CONNECTIONS_URL_PROPERTY, "/nexj/" + sAdapter.toLowerCase(Locale.ENGLISH) + ".connections");  // sets the properties to postgresql.connection
After all properties are loaded, it creates the connection through Connection Factory files.