aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* create fewer objects, call fewer methods in extract_pg_identifier_from_nameAaron Patterson2010-10-041-3/+3
|
* * + flatten is not required in >= Ruby 1.8.7Aaron Patterson2010-10-041-1/+1
|
* eliminating method_missing on TableDefinitionAaron Patterson2010-09-291-14/+6
|
* DRY up postgresql quote logicAaron Patterson2010-09-291-11/+14
|
* fixing where clause indentationAaron Patterson2010-09-291-4/+4
|
* use consistent method calls for column inspectionAaron Patterson2010-09-291-1/+1
|
* require pg when this adapter is loadedAaron Patterson2010-09-291-5/+4
|
* only reopen ConnectionAdapters onceAaron Patterson2010-09-291-2/+0
|
* use inheritence to deal with custom methodsAaron Patterson2010-09-292-10/+20
|
* just use if rather than nil?Aaron Patterson2010-09-291-1/+1
|
* just require sqlite3 when the database adapter is requiredAaron Patterson2010-09-291-4/+1
|
* each works well tooAaron Patterson2010-09-281-1/+1
|
* no need for splat and flattenAaron Patterson2010-09-281-1/+1
|
* Test add_index and remove_index with a symbol name #4891Étienne Barrié2010-09-281-4/+3
|
* third parameter is not usedAaron Patterson2010-09-261-1/+1
|
* Fix remove_index issue when provided :name is a symbolTim Connor2010-09-261-1/+1
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* No need to use inject here.Emilio Tagua2010-09-221-5/+5
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Missing the mysql2 gem hereSantiago Pastorino2010-09-221-1/+1
|
* Error message should advice to use 'mysql2' gem.Neeraj Singh2010-09-221-2/+2
| | | | | | | | | | | | | If I create a new app using command rails new demo -d mysql then Gemfile contains 'mysql2' gem by default. However if mysql gem is missing then error message says raise "!!! Missing the mysql gem. Add it to your Gemfile: gem 'mysql', '2.8.1'" [#5569 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Exception handling more readableThiago Pradi2010-09-191-2/+2
| | | | | | [#5601 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Fix issue with remove_index and add unit test [#5645 state:resolved]Tim Connor2010-09-181-2/+1
|