This framework is a plugin for WebObjects' JDBCAdaptor so that it is able to communicate with a PostgreSQL database server. You need to make sure that both this framework and the JDBC driver for PostgreSQL are in your project's classpath. In your connection dictionary you might use values such as;
| URL = | jdbc:postgresql://databaserver/databasename |
| driver = | org.postgresql.Driver |
| plugin = | PostgresqlPlugIn |
| username = | foo |
When the SQL is being generated for your model to populate your database server's schema, EOF will typically connect to the database server to check information about various types that the database server will support. Sometimes this is very inconvenient when you are away from direct access to the database server. For this reason, the plugin contains a hard-coded set of PostgreSQL 8.2 types and you can specify that you want to use those by adding the ?useBundledJdbcInfo=true to the end of the connection URL.