Difference between revisions of "PostgreSQL Adapter-nexj/test-env/files"

From CDOT Wiki
Jump to: navigation, search
(Created page with '== Files to configure based on PostgreSQL properties== : src :: PostgreSQLAdapter.java // Extends SQLAdapter.java - SQL Persistence adapter, responsible for regular data querie…')
 
Line 1: Line 1:
 
== Files to configure based on PostgreSQL properties==
 
== Files to configure based on PostgreSQL properties==
 
: src
 
: src
:: PostgreSQLAdapter.java  // Extends SQLAdapter.java  - SQL Persistence adapter, responsible for regular data queries (insert, select, delete)
+
:: [[ PostgreSQL_Adapter-nexj/Adapter | PostgreSQLAdapter.java ]] // Extends SQLAdapter.java  - SQL Persistence adapter, responsible for regular data queries (insert, select, delete)
:: PostgreSQLSchemaManager.java  // Extends SQLSchemaManager.java - class for reading, creating and upgrading the database schema
+
:: [[ PostgreSQL_Adapter-nexj/SchemaManger | PostgreSQLSchemaManager.java ]] // Extends SQLSchemaManager.java - class for reading, creating and upgrading the database schema
 
:: system.dstype
 
:: system.dstype
 
:: DatabaseTool.java  // This file calles SQLSchemaMangerFactory.java and creates the connection
 
:: DatabaseTool.java  // This file calles SQLSchemaMangerFactory.java and creates the connection
Line 9: Line 9:
 
:: Driver type and some other properties in JDBCInfo.java
 
:: Driver type and some other properties in JDBCInfo.java
 
:: SQLSchemaManagerFactory.java  // Sets the connection for the particular adapter type
 
:: SQLSchemaManagerFactory.java  // Sets the connection for the particular adapter type
 +
:: [[ PostgreSQL_Adapter-nexj/Upgrade | main.upgrade ]]
 
: test
 
: test
 
:: AllTests.java
 
:: AllTests.java
:: PostgreSQLAdapterTest.java  // Extends SQLAdapterTest.java
+
:: [[ PostgreSQL_Adapter-nexj/AdapterTest | PostgreSQLAdapterTest.java ]]] // Extends SQLAdapterTest.java
 
:: PostgreSQLSchemaManagerTest.java  // Extends SQLSchemaManagerTest.java
 
:: PostgreSQLSchemaManagerTest.java  // Extends SQLSchemaManagerTest.java
 
:: default.config  // System resources are being extracted from these 4 XML files
 
:: default.config  // System resources are being extracted from these 4 XML files

Revision as of 22:07, 9 December 2010

Files to configure based on PostgreSQL properties

src
PostgreSQLAdapter.java // Extends SQLAdapter.java - SQL Persistence adapter, responsible for regular data queries (insert, select, delete)
PostgreSQLSchemaManager.java // Extends SQLSchemaManager.java - class for reading, creating and upgrading the database schema
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 connection for the particular adapter type
main.upgrade
test
AllTests.java
PostgreSQLAdapterTest.java ] // Extends SQLAdapterTest.java
PostgreSQLSchemaManagerTest.java // Extends SQLSchemaManagerTest.java
default.config // System resources are being extracted from these 4 XML files
postgresql.connection
filestorage.connections
filestoragefragment.connections
Script - scripts are being processed through SQLDataTest.java
postgresql_setup.sql
TO be cond'