Changes

Jump to: navigation, search

NexJ Express Connecting to PostgreSQL

3,328 bytes added, 20:30, 26 January 2014
no edit summary
<big><big> PostgreSQL Adapter for NexJ - Create Test Environment </big></big>{{NexJ_Express IndexAdmon/obsolete}}
* [[category: NexJ Express PostgreSQL]][[Category:NexJ_Express_Development]][[category: NexJ Express]] == Task Summary =={| border="1" cellpadding="4" cellspacing="2" style="border: 1px solid black;border-collapse:collapse;"|-! Task! Status|- Setup | Install the postgresqlPostgreSQL Server| DONE|- | Install PostgreSQL driver| DONE|- | Add code to connect to server| DONE|-| Create Script for Test database| DONE |-| Test connectionto the server| DONE|-| Configure UnitTests for multiple DB's| |} == Task Details ===== Install PostgreSQL ===Download: <code>Version 9.0</code> from list of [http://www.enterprisedb.com/products/pgdownload.do#windows PostgreSQL downloads]. === Install PostgreSQL JDBC3 driver ===Download: <code> JDBC3 Postgresql Driver, Version 9.0-801 </code> @ http://jdbc.postgresql.org/download.html <br/>Install: Configure the workCopy driver to <code>[jdk folder]/jre/lib/wsext</code> === Code: Add PostgreSQL Driver ===Package: <code>nexj.core.persistance.sql</bincode>:Create <code>PostgreSQLAdapter.java</code> by extending <code>SQLAdapter</code>:Create <code>PostgreSQLSchemaManager.java</code> by extending <code>SQLSchemaManager</code> :Edit <code>RelationalDatabase.java</code>:Edit <code>RelationalDatabaseFragment.java</code>:Edit <code>SQLSchemaManagerFactory.java</code> Package: <code>nexj.core.meta.sys</defaultcode>:Edit <code>system.dstypes</code> === SQL Scripts ===Package: <code>nexj.core.persistence.sql.configscript</code>: Configure the workCreate * <code>postgresql_setup.sql</code>* <code>postgresql_drop.sql</code>* <code>postgresql_insert.sql</code>* <code>postgresql_upd_addr.sql</wscode>* <code>postgresql_upd_cont.sql</code> === UnitTest: Test Connectivity to database ===Package: <code>nexj.core.persistance.sql</code>:Create <code>PostgreSQLAdapterTest.java</code> by extending <code>SQLAdapterTest</code>:Create <code>PostgreSQLSchemaManagerTest.java</testcode> by extending <code>SQLSchemaManagerTest</code> Package: <code>nexj</code>:Create <code>postgresql.connections</code> using NexJ Studio:Edit <code>default.config</code> to use PostgreSQL: Edit all <code>*.connections</code> files to use PostgreSQL ===Configure UnitTests for more than one Database=== <!--== Setup the postgresql-connection ==For testing the connection, the work'AllTests.java' is being used.: Installed the <code> Installer version Version 9.0.1-1</wscode> from list of [http:/core/binwww.enterprisedb.com/nexjproducts/postgresqlpgdownload.do#windows PostgreSQL downloads].connection: Configure Installed the work<code> JDBC3 Postgresql Driver, Version 9.0-801 </wscode> @ http:/core/testjdbc.postgresql.org/nexjdownload.html and added it to the libraries in JDK:: The driver class which is being used for NexJ Express Model is: <code> org.postgresql.xa.PGXADataSource </postgresqlcode>:: The driver is loaded from RelationalDatabaseFragment.java and RelationalDatabase.connectionjava: Metadata is loaded from the particular driver
::
<source lang=java>
/* 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 is hardcoded
</source>
* 2- Add PostgreSQL database to related java files: SQLSchemaMangerFactory.java: RelationalDatabaseFragment.java * 3- Create After all properties are loaded, it creates the extended PostgreSQL source connection through Connection Factory files : PostgreSQLAdapter.java: PostgreSQLSchemaManger.java
* 4===Files to Configure==='''NOTE''': Changes to these files are involved with '''1- Create Port''', which should be: 5432, and '''2- Driver package''' that should change to <code> org.postgresql.xa.PGXADataSource </code>: src:: system.dstype:: DatabaseTool.java // This file calles SQLSchemaMangerFactory.java and creates the connection:: RelationalDatabase.java // Sets the default properties for the supported drivers:: RelationalDatabaseFragment.java // Sets the custom fragment properties for the supported drivers:: Driver type and some other properties in JDBCInfo.java:: SQLSchemaManagerFactory.java // Sets the extended PostgreSQL connection for the particular adapter type: test :: AllTests.java:: default.config // change to these four files are: adapter="PostgreSQL" port="5432":: postgresql.connection : PostgreSQLAdapterTest: filestorage.javaconnections: PostgreSQLSchemaMangerTest:filestoragefragment.javaconnections-->

Navigation menu