# File lib/jdbc_adapter/jdbc_firebird.rb, line 7 def modify_types(tp) tp[:primary_key] = 'INTEGER NOT NULL PRIMARY KEY' tp[:string][:limit] = 252 tp[:integer][:limit] = nil tp end
# File lib/jdbc_adapter/jdbc_firebird.rb, line 35 def next_sequence_value(sequence_name) select_one("SELECT GEN_ID(#{sequence_name}, 1 ) FROM RDB$DATABASE;")["gen_id"] end
Generated with the Darkfish Rdoc Generator 2.