Sha256: 0381327ecb78329e67025322911e165bfcc7bf9e7b0f84591314ea9f5f627a4e
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
$TESTING=true JRUBY = RUBY_PLATFORM =~ /java/ require 'rubygems' require 'spec' require 'date' require 'pathname' # put data_objects from repository in the load path # DO NOT USE installed gem of data_objects! $:.unshift File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'data_objects', 'lib')) require 'data_objects' if JRUBY $:.unshift File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'do_jdbc', 'lib')) require 'do_jdbc' end # put the pre-compiled extension in the path to be found $:.unshift File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')) require 'do_sqlite3' log_path = File.expand_path(File.join(File.dirname(__FILE__), '..', 'log', 'do.log')) FileUtils.mkdir_p(File.dirname(log_path)) DataObjects::Sqlite3.logger = DataObjects::Logger.new(log_path, :debug) at_exit { DataObjects.logger.flush } module Sqlite3SpecHelpers def insert(query, *args) result = @connection.create_command(query).execute_non_query(*args) result.insert_id end def exec(query, *args) @connection.create_command(query).execute_non_query(*args) end def select(query, types = nil, *args) begin command = @connection.create_command(query) command.set_types types unless types.nil? reader = command.execute_reader(*args) reader.next! yield reader ensure reader.close if reader end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
do_sqlite3-0.9.11-x86-mswin32-60 | spec/spec_helper.rb |
do_sqlite3-0.9.11 | spec/spec_helper.rb |