aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* 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-263-5/+28
|
* adding bind value substitutionAaron Patterson2010-10-261-0/+6
|
* adding the abstract methodAaron Patterson2010-10-261-0/+6
|
* if it responds to :usec, it should also "act like" a timeAaron Patterson2010-10-221-1/+1
|
* Use ALTER INDEX syntax to rename an indexMichał Łomnicki2010-10-191-0/+4
|
* replace if ! with unlessNeeraj Singh2010-10-171-1/+1
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* in regexps, the dot in a character class is not a metacharacterXavier Noria2010-10-151-2/+2
|
* Update the PostgreSQL adapter documentationCarl Lerche2010-10-131-2/+0
|
* rb_thread_select should always be used in DB drivers when available.Carl Lerche2010-10-131-1/+1
|
* dry up column type testingAaron Patterson2010-10-121-5/+5
|
* all columns respond to string_to_binary, so no need to check respond_to?Aaron Patterson2010-10-122-2/+11
|
* drying up true and false casesAaron Patterson2010-10-121-3/+7
|
* reducing comparisons in when statementsAaron Patterson2010-10-121-6/+6
|
* removing intermediate variablesAaron Patterson2010-10-121-2/+1
|
* reduce the number of times we test for the column variableAaron Patterson2010-10-121-2/+5
|
* refactoring date / time / datetime when statementAaron Patterson2010-10-121-11/+8
|
* fixing case / when indentationAaron Patterson2010-10-121-20/+20
|
* removing freezeAaron Patterson2010-10-111-3/+3
|
* removing false commentAaron Patterson2010-10-071-2/+0
|
* fix ruby 1.9 deadlock problem, fixes #5736 add connection pool testsHemant Kumar2010-10-061-8/+6
|