Tagged Questions
The activerecord-jdbc tag has no wiki summary.
7
votes
5answers
4k views
Rails Schema creation problem
I am using Jruby and rails 2.2.2. My problem is I have a migration that is not being correctly written to the database schema.
Here is my migration:
class CreateNotes < ActiveRecord::Migration
...
3
votes
3answers
546 views
CamelCase instead of snake_case in Rails DB
My DB tables and field names are in CamelCase. Is it possible to convert those names into snake_case on a fly? To make model methods look pretty?
The app is JRubyOnRails 3.0 / MSSQL DB / ...
2
votes
3answers
2k views
Using Sybase ASE 12.5.4 with jTDS drivers with JRuby
Problem
I am trying to build a small ruby script - which will be run using jruby once a day - to connect to a Sybase ASE 12.5.4 database and perform a complex query.
Ultimately I intend to do some ...
1
vote
1answer
277 views
Could not find activerecord-jdbcmysql-adapter (existing is for Java)
I've been struggling with this problem for a few hours and it is preventing me from even starting my server, which therefore is stopping development completely.
I am running Windows, Bitnami ...
0
votes
1answer
45 views
activerecord-jdbc-adapter tests failing when using jruby under rvm -getting “package org.jruby does not exist”
Anyone knows how to run activerecord-jdbc-adapter tests when using jruby under rvm? Getting "package org.jruby does not exist" - do I need to put the jruby jar on the class path, perhaps?
I added it ...
0
votes
1answer
54 views
Rails3: How to manage tainted gem
I'm a n00b in Rails and in Rails 3. I had to patch activerecord-jdbc-adapter source locally because of a bug. See Rails 3 ActiveRecord chaining for details. I modified locally ...
0
votes
1answer
356 views
JRuby on Rails using jdbc postgres (8.4) ignores Default values
I have a table created in a migration (only to simplify the problem) that looks like this:
create_table :test_defaults, :force => true do |table|
table.integer :failure, :default ...