1
edit
Changes
Created page with '== Debugging a Non-Default SQL Adapter == ===Summary=== By default, NexJ Express Unit tests are configured to test the MySQL Adapter. The instructions that follow outline instruc…'
== Debugging a Non-Default SQL Adapter ==
===Summary===
By default, NexJ Express Unit tests are configured to test the MySQL Adapter.
The instructions that follow outline instructions for configuring Unit tests to be run for other SQL Adapters.
''For this manual, reference will be made to the PostgreSQL Adapter but it will work the same for other adapters''
====Prerequisite====
The following source must exist for the new SQL Adapter:
<code>nexj.core.persistence.sql.[DbName]SQLAdapter.java</code> extending <code>nexj.core.persistence.sql.SQLAdapter</code>
<code>nexj.core.persistence.sql.[DbName]SQLSchemaManager.java</code> extending <code>nexj.core.persistence.sql.SQLSchemaManager</code>
The following files should be edited and entries for the new SQL Adapter added:
<code>nexj.core.meta.persistence.sql.RelationalDatabase.java</code>
<code>nexj.core.meta.peristence.sql.RelationalDatabaseFragment.java</code>
<code>nexj.core.meta.sys.system.dstypes</code>
<code>nexj.core.persistence.sql.SQLSchemaManagerFactory.java</code>
<code>nexj.core.util.JDBCInfo.java</code>
====Environment Files====
===Summary===
By default, NexJ Express Unit tests are configured to test the MySQL Adapter.
The instructions that follow outline instructions for configuring Unit tests to be run for other SQL Adapters.
''For this manual, reference will be made to the PostgreSQL Adapter but it will work the same for other adapters''
====Prerequisite====
The following source must exist for the new SQL Adapter:
<code>nexj.core.persistence.sql.[DbName]SQLAdapter.java</code> extending <code>nexj.core.persistence.sql.SQLAdapter</code>
<code>nexj.core.persistence.sql.[DbName]SQLSchemaManager.java</code> extending <code>nexj.core.persistence.sql.SQLSchemaManager</code>
The following files should be edited and entries for the new SQL Adapter added:
<code>nexj.core.meta.persistence.sql.RelationalDatabase.java</code>
<code>nexj.core.meta.peristence.sql.RelationalDatabaseFragment.java</code>
<code>nexj.core.meta.sys.system.dstypes</code>
<code>nexj.core.persistence.sql.SQLSchemaManagerFactory.java</code>
<code>nexj.core.util.JDBCInfo.java</code>
====Environment Files====