Sha256: 36d7ebdf3ae632324b6c32d58ca1edb7fce6adb1edb490b6c6988a5488fcc0d4
Contents?: true
Size: 1.55 KB
Versions: 18
Compression:
Stored size: 1.55 KB
Contents
# This class handels SQLite3-specific behaviour. class Baza::Driver::Sqlite3Java < Baza::JdbcDriver AutoAutoloader.autoload_sub_classes(self, __FILE__) attr_reader :mutex_statement_reader # Helper to enable automatic registering of database using Baza::Db.from_object def self.from_object(args) if args[:object].class.name == "Java::OrgSqlite::SQLiteConnection" return { type: :success, args: { type: :sqlite3_java, conn: args[:object] } } end end def self.args [{ label: "Path", name: "path" }] end # Constructor. This should not be called manually. def initialize(db) super @path = @db.opts[:path] if @db.opts[:path] @preload_results = true if @db.opts[:conn] @conn = @db.opts[:conn] else org.sqlite.JDBC reconnect end end def reconnect raise "No path was given." unless @path @stmt = nil @conn = java.sql.DriverManager.getConnection("jdbc:sqlite:#{@path}") end # Escapes a string to be safe to used in a query. def escape(string) # This code is taken directly from the documentation so we dont have to rely on the SQLite3::Database class. This way it can also be used with JRuby and IronRuby... # http://sqlite-ruby.rubyforge.org/classes/SQLite/Database.html string.to_s.gsub(/'/, "''") end def transaction query_no_result_set("BEGIN TRANSACTION") begin yield @db query_no_result_set("COMMIT") rescue query_no_result_set("ROLLBACK") raise end end end
Version data entries
18 entries across 18 versions & 1 rubygems