Methods
Instance Public methods
explain(arel, binds = [])
📝 Source code
# File activerecord/lib/active_record/connection_adapters/sqlite3/database_statements.rb, line 18
def explain(arel, binds = [])
sql = "EXPLAIN QUERY PLAN #{to_sql(arel, binds)}"
SQLite3::ExplainPrettyPrinter.new.pp(exec_query(sql, "EXPLAIN", []))
end
🔎 See on GitHub
high_precision_current_timestamp()
📝 Source code
# File activerecord/lib/active_record/connection_adapters/sqlite3/database_statements.rb, line 107
def high_precision_current_timestamp
HIGH_PRECISION_CURRENT_TIMESTAMP
end
🔎 See on GitHub