aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* insert statements are prepared, but values are not escaped properlyAaron Patterson2011-04-141-0/+4
* adding a type cast method for prepared statementsAaron Patterson2011-04-141-1/+1
* make sqlite insert_sql more consistent with other adaptersAaron Patterson2011-04-111-1/+2
* adding exec_insert to sqlite3Aaron Patterson2011-04-111-0/+4
* sql logger ignores schema statementsAaron Patterson2011-03-281-2/+2
* pushing id insertion and prefetch primary keys down to Relation#insertAaron Patterson2011-03-221-0/+4
* log method takes an option list of bind valuesAaron Patterson2011-02-091-1/+1
* adjust query counts to be consistent across databases, make sure database log...Aaron Patterson2011-02-041-3/+15
* SQLite3 has supported savepoints since version 3.6.8, we should use this!Jon Leighton2011-01-111-0/+16
* remove unused string substitutionAaron Patterson2011-01-081-6/+1
* converted exec to exec_query for sqliteAaron Patterson2010-11-051-11/+11
* only do string substitution on column names once, remove intermediate data st...Aaron Patterson2010-10-301-7/+6
* columns are always stringsAaron Patterson2010-10-301-1/+1
* no need to to_i, sqlite does that for usAaron Patterson2010-10-301-2/+2
* renaming bind_values to binds where it makes senseAaron Patterson2010-10-261-5/+5
* adding backwards compatibility for non-prepare statement handling driversAaron Patterson2010-10-261-0/+6
* one more mysql test left!Aaron Patterson2010-10-261-3/+2
* clearing statements on disconnect and resetAaron Patterson2010-10-261-0/+6
* type casting bound value based on column associated with valueAaron Patterson2010-10-261-1/+3
* stop calling execute directly on the database connectionAaron Patterson2010-10-261-2/+2
* removing another executeAaron Patterson2010-10-261-1/+1
* removing more execute callsAaron Patterson2010-10-261-2/+2
* removing more calls to executeAaron Patterson2010-10-261-2/+2
* removing some uses of executeAaron Patterson2010-10-261-4/+2
* exec returns an AR::ResultAaron Patterson2010-10-261-2/+24
* if it responds to :usec, it should also "act like" a timeAaron Patterson2010-10-221-1/+1
* each works well tooAaron Patterson2010-09-281-1/+1
* no need for splat and flattenAaron Patterson2010-09-281-1/+1
* Deletes trailing whitespaces (over text files only find * -type f -exec sed '...Santiago Pastorino2010-08-141-1/+1
* Removing most of the symbol to proc usage in Active RecordPrem Sichanugrist2010-08-131-3/+3
* ensuring that description does not exceed 100 columnsNeeraj Singh2010-08-021-2/+2
* these strings do not need to be frozenAaron Patterson2010-07-121-2/+2
* use Hash#each to avoid a second hash lookupAaron Patterson2010-07-121-4/+2
* reducing funcalls, cleaning up primary key methods for sqlite adapterAaron Patterson2010-07-101-6/+11
* moving parse_sqlite_config to the sqlite3_connection method (where it belongs...Aaron Patterson2010-07-081-19/+0
* removing useless code. [#4988 state:resolved]Aaron Patterson2010-06-261-15/+4
* remove_column should raise an ArgumentError when no columns are passed [#4803...Jeff Dean2010-06-231-0/+1
* forcing encoding on 1.9 when dealing with "binary" columns [#4612 state:resol...Aaron Patterson2010-06-081-0/+4
* make add_index and remove_index more resilient; new rename_index method; trac...Étienne Barrié2010-05-181-2/+2
* future proofing the sqlite3 adapter codeAaron Patterson2010-01-261-3/+3
* Add subscriber for ActionPack and move all logging inside it.José Valim2010-01-131-1/+1
* Remove locking related unused codePratik Naik2009-12-281-6/+0
* Fix Rails root in sqlite adapterJoshua Peek2009-10-161-3/+3
* Merge commit 'rails/master'Emilio Tagua2009-08-171-37/+3
|\
| * Remove support for SQLite 2.Pratik Naik2009-08-171-37/+3
* | Merge commit 'rails/master'Emilio Tagua2009-08-101-0/+4
|\|
| * raises exception (ActiveRecord::ConfigurationError with message) on habtm ass...Jaime Bellmyer2009-08-091-0/+4
* | Merge commit 'rails/master'Emilio Tagua2009-08-031-1/+0
|\|
| * SQLite: drop support for 'dbfile' option in favor of 'database.'Jeremy Kemper2009-08-011-1/+0
* | Create is now powered by Arel. Removed methods that are no longer used.Emilio Tagua2009-07-011-2/+2