aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* Fix some typos in comments.Joe Rafaniello2016-05-041-1/+1
* Dont simply assume a type is a valid database type. This is only always true ...Vipul A M2016-04-251-0/+4
* Follow up of #23461Vipul A M2016-04-241-1/+1
* Include the Savepoints module in all adapters.Vipul A M2016-04-241-1/+0
* Move `select_rows` implementation to super classRyuta Kamizono2016-04-241-4/+0
* https://github.com/rails/rails/commit/42dd2336b31a8d98776d039a2b9fd7f834156a7...Vipul A M2016-04-231-0/+4
* Define `arel_visitor` method on all adaptersRyuta Kamizono2016-04-201-0/+4
* Merge pull request #23515 from kamipo/extract_arel_visitorJeremy Daer2016-04-191-9/+0
|\
| * Extract `arel_visitor` and move up to the abstract adapterRyuta Kamizono2016-04-041-9/+0
* | Move `quoted_date`, `quote_string` and `quote_table_name_for_assignment` meth...Ryuta Kamizono2016-04-051-10/+0
|/
* Move `@quoted_{column|table}_names` cache up to the abstract adapterRyuta Kamizono2016-03-311-5/+0
* Make to private the visibility of `_quote` and `_type_cast`Ryuta Kamizono2016-03-301-24/+3
* Passing `table_name` to `Column#initialize` to avoid `instance_variable_set`Ryuta Kamizono2016-03-081-3/+1
* Initialize `column.table_name` immediately for `column.serial?` correctly wor...Ryuta Kamizono2016-03-081-2/+5
* SQLite 2 support has been dropped [ci skip]Ryuta Kamizono2016-02-041-1/+0
* Extract `ExplainPrettyPrinter` to appropriate filesRyuta Kamizono2016-02-011-15/+2
* `{update|delete}_sql` are almost the same as `{update|delete}`Ryuta Kamizono2016-01-081-5/+0
* Remove `delete_sql` in sqlite3 adapterRyuta Kamizono2016-01-071-5/+0
* Refactor `connection.insert_sql`Ryuta Kamizono2016-01-071-5/+0
* Fix `connection#create` in PG adapterRyuta Kamizono2016-01-051-1/+0
* Support supports_datetime_with_precision? for sqlite3Yasuo Honda2015-11-301-0/+4
* Refactor `AbstractAdapter#initialize`Ryuta Kamizono2015-11-301-2/+1
* Deprecate `#table_exists?`, `#tables` and passing arguments to `#talbes`yui-knk2015-11-091-2/+26
* Deprecate exception#original_exception in favor of exception#causeYuki Nishijima2015-11-031-2/+2
* Remove `#tables` extra args againRyuta Kamizono2015-10-221-12/+8
* Do not cache prepared statements that are unlikely to have cache hitsSean Griffin2015-10-201-3/+7
* Wrong usage of 'a' in docs fixed [ci skip]Mehmet Emin İNAÇ2015-10-031-1/+1
* introduce `conn.data_source_exists?` and `conn.data_sources`.Yves Senn2015-09-221-0/+2
* Merge pull request #21609 from kamipo/do_not_dump_view_as_tableJeremy Daer2015-09-191-0/+13
|\
| * Add `#views` and `#view_exists?` methods on connection adaptersRyuta Kamizono2015-09-131-0/+13
* | Merge pull request #21614 from kamipo/correctly_dump_composite_primary_keyJeremy Daer (Kemper)2015-09-191-3/+2
|\ \
| * | Correctly dump composite primary keyRyuta Kamizono2015-09-201-3/+2
| |/
* / Remove `@connection` in `StatementPool`Ryuta Kamizono2015-09-201-2/+1
|/
* Support dropping indexes concurrently in PostgresGrey Baker2015-09-051-1/+2
* Ensure that microsecond precision is only used for version of mysql that supp...Jori Hardman2015-07-201-12/+0
* Add reversible syntax for change_column_defaultPrem Sichanugrist2015-06-261-1/+3
* Add collation support for string and text columns in SQLite3Akshay Vishnoi2015-05-281-4/+51
* Remove `require 'arel/visitors/bind_visitor'`Ryuta Kamizono2015-05-191-1/+0
* Eliminate the duplication code of `StatementPool`Ryuta Kamizono2015-05-191-28/+1
* :nodoc: change_column_null in the implmenting adaptersTony Miller2015-05-031-1/+1
* cache quoted column names in SQLite3Aaron Patterson2015-02-241-1/+2
* Remove the SQLite3 Binary subclassSean Griffin2015-02-111-18/+0
* Allow a symbol to be passed to `attribute`, in place of a type objectSean Griffin2015-02-061-0/+4
* rm `Column#cast_type`Sean Griffin2015-02-031-2/+2
* Always convert strings to UTF-8, regardless of column type in SQLiteSean Griffin2015-01-281-11/+6
* Remove Relation#bind_paramsSean Griffin2015-01-271-5/+3
* Errors raised in `type_cast_for_database` no longer raise on assignmentSean Griffin2015-01-231-1/+1
* Merge pull request #17820 from fw42/restore_query_cache_on_rollbackRafael Mendonça França2015-01-021-1/+1
|\
| * Restore query cache on rollbackFlorian Weingarten2014-12-011-1/+1
* | Don't load an entire table into memory to copy it on SQLiteSean Griffin2015-01-011-15/+4