On Saturday, March 1, 2014 12:04:58 PM UTC-6, Jeremy Evans wrote: > > Weird, the error message shows it trying to load > sequel/adapters/postgresql instead of sequel/adapters/postgres. I'm not > sure why that would happen if you are attempting to connect to > jdbc:postgresql://..., but I could see it happening if you are attempting > to connect to postgresql://... >
Ah ha. You are again correct. I had code which I had forgotten was automatically prepending jdbc: if the RUBY_PLATFORM is java. This was twice incorrect, since the adapter name had to be initially "postgresql" for that to work, and clearly "postgresql" is incorrect in the first place unless specifically using jdbc-postgres. Thanks again, -Nels -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sequel-talk. For more options, visit https://groups.google.com/groups/opt_out.
