Hopefully a simple question…I am getting ready to move to using jruby
for an existing ROR application. When specifying the JDBC driver for a
postgres DB, or any DB for that matter, are there separate JDBC drivers
for 32 bit versus 64 bit postgres?
We currently deploy to a variety of DBs (Postgres, Firebird, SQLServer,
etc) to a variety of OS flavors and architectures. Are there
considerations for x32 versus x64?
The JDBC drivers should be platform independent. We are connecting to
PostgreSQL on 32 and 64 bit with the same JDBC drivers. The drivers are
provided by gems (like jdbc-postgres) by including
activerecord-jdbcpostgresql-adapter in your project.