Changes

Jump to: navigation, search

PostgreSQL Adapter Project - Resources

7 bytes added, 14:22, 29 November 2010
PostgreSQL Specifications
:: Practice using the PostgreSQL Driver [http://www.faqs.org/docs/ppbook/x20856.htm] - [http://www.fankhausers.com/postgresql/jdbc/#driver_install] -[http://www.mkyong.com/java/how-do-connect-to-postgresql-with-jdbc-driver-java/]
::Connection Pools And DataSources @ [http://www.postgresql.org/docs/7.3/static/jdbc-datasource.html PostgreSQL Documentation]
::some data type setups for postgreSQL driver '''imp'''PostgreSQL '''Configuration Properties''' @ [http://jdbc.postgresql.org/documentation/8083/connect.html jdbc.postgresql.org ]
:: Issues specific to PostgreSQL and JDBC [http://www.commandprompt.com/ppbook/x21115]
::One issue is that JDBC does not do any client-side SQL parsing or syntax checking. SQL statements are passed off transparently to the database, whether or not they are valid. Therefore, if the SQL is valid on one vendor's database, but invalid on another vendor's database the implementation won't know until the actual connection is made and the SQL is sent across. Sun is attempting to deal with this problem, and there may be some provisions made to correct this, either in later versions of JDBC or in a different standard. Another issue is that each vendor has additional helper classes specific to that vendor. For instance, PostgreSQL has extensions for geometric data types. Other vendors won't support these extensions; they are specific to PostgreSQL. If you use such vendor-specific classes, your program will not work with another JDBC database, despite using the JDBC "standard."[http://www.commandprompt.com/ppbook/c20820]
1
edit

Navigation menu