Module | Sequel::JDBC::H2::DatabaseMethods |
In: |
lib/sequel/adapters/jdbc/h2.rb
|
PRIMARY_KEY_INDEX_RE | = | /\Aprimary_key/i.freeze |
Commit an existing prepared transaction with the given transaction identifier string.
# File lib/sequel/adapters/jdbc/h2.rb, line 11 11: def commit_prepared_transaction(transaction_id) 12: run("COMMIT TRANSACTION #{transaction_id}") 13: end
Return Sequel::JDBC::H2::Dataset object with the given opts.
# File lib/sequel/adapters/jdbc/h2.rb, line 21 21: def dataset(opts=nil) 22: Sequel::JDBC::H2::Dataset.new(self, opts) 23: end