aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* Make serialized fixtures work againPratik Naik2010-12-291-1/+2
* move ivar to initialize, use triple dot rather than minusAaron Patterson2010-12-161-1/+1
* Merge remote branch 'rude/disable-keys-for-postgres-9.0.1' into pgAaron Patterson2010-12-091-6/+7
|\
| * Cleaner way to extract the Postgres versionMatthew Rudy Jacobs2010-11-211-2/+6
| * Fix Bug: disable_referential_integrity doesn't work for postgres 9.0.1Matthew Rudy Jacobs2010-11-211-4/+1
* | Use Array.wrap instead of using ternaryPiotr Sarnacki2010-12-091-1/+1
* | Allow to run migrations from more than one directoryPiotr Sarnacki2010-12-091-2/+4
* | made in_clause_length default nil (no limit)Alex Rothenberg2010-12-021-2/+2
* | rolling out migrated_at until I can fix the buildAaron Patterson2010-12-011-15/+3
* | tests mostly passJosh Susser2010-12-011-2/+2
* | name in schema_migrations, migrations in schema dumpJosh Susser2010-12-011-0/+4
* | Add migrated_at column to schema_migrations table.Josh Susser2010-12-011-1/+9
* | Don't depend on rubygems loading thread (for Mutex)raggi2010-11-251-0/+1
* | Avoid creating local var.Emilio Tagua2010-11-241-2/+1
* | Use params default.Emilio Tagua2010-11-241-2/+1
* | Removed ids_in_list_limit in favor of in_clause_length defined in database_li...Alex Rothenberg2010-11-231-5/+0
|/
* Adapters can specify maximum number of ids they support in a list of expressionsAlex Rothenberg2010-11-181-0/+5
* use column names as order by complex function parameters, fix for postgresql ...Raimonds Simanovskis2010-11-071-1/+1
* Avoid warning: shadowing outer local variableSantiago Pastorino2010-11-051-2/+2
* Fixes queries using limits and punctuation in order, removes order("col1, col...Santiago Pastorino2010-11-051-3/+3
* renaming exec in the mysql adapterAaron Patterson2010-11-051-2/+2
* renaming exec in the PG adapterAaron Patterson2010-11-051-3/+3
* converted exec to exec_query for sqliteAaron Patterson2010-11-052-12/+12
* 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
* select_all() should always return an array, so no need to testAaron Patterson2010-10-271-9/+1
* speeding up query cacheAaron Patterson2010-10-272-5/+4
* making query cache work with prepared statementsAaron Patterson2010-10-271-6/+7
* renaming bind_values to binds where it makes senseAaron Patterson2010-10-264-17/+17
* adding backwards compatibility for non-prepare statement handling driversAaron Patterson2010-10-264-2/+34
* caching column valuesAaron Patterson2010-10-261-4/+11
* setting the authorized session clears the statement cacheAaron Patterson2010-10-261-0/+1
* add a session authorization setter to the pg connectionAaron Patterson2010-10-261-0/+5
* avoiding statement cache if there are no bind valuesAaron Patterson2010-10-261-0/+11
* folding async_exec to execAaron Patterson2010-10-261-7/+0
* clear cache before resetting the connectionAaron Patterson2010-10-261-1/+1
* prepare the statement before we cache the keyAaron Patterson2010-10-261-2/+4
* bind substitution is working properlyAaron Patterson2010-10-261-7/+11
* bind parameters are now typecastAaron Patterson2010-10-261-1/+3
* basic bind parameters are workingAaron Patterson2010-10-261-1/+1
* initial exec() method is working in pg adapterAaron Patterson2010-10-261-0/+38
* monkey patching with enumerable so we can call eachAaron Patterson2010-10-261-10/+4
* monkey patching Mysql::Stmt, calling free on the metadataAaron Patterson2010-10-261-4/+9
* free the result after slurpingAaron Patterson2010-10-261-0/+1
* eliminating some calls to execute()Aaron Patterson2010-10-261-5/+2
* statements are cached, cache is cleared on reconnectAaron Patterson2010-10-261-2/+19
* all mysql tests are passingAaron Patterson2010-10-261-2/+16
* one more mysql test left!Aaron Patterson2010-10-262-3/+9
* mysql tests are mostly passingAaron Patterson2010-10-261-17/+65