aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
...
| * | copy-edits e2656e0Xavier Noria2011-04-232-3/+3
| * | copy-edits 3d45964Xavier Noria2011-04-232-2/+2
| * | Added docs for #drop_database on MySQL adapterSebastian Martinez2011-04-222-1/+5
| * | Added docs for #disconnect! on adaptersSebastian Martinez2011-04-223-1/+6
| * | Added missing docs for clear_cache! on adaptersSebastian Martinez2011-04-223-0/+3
| * | Added missing docs for +supports_primary_key?+ on some adaptersSebastian Martinez2011-04-222-0/+2
| * | Added missing docs for +support_migrations?+ on some adaptersSebastian Martinez2011-04-222-0/+2
| * | Have a more connection specific rdoc for +supports_statement_cache?+Sebastian Martinez2011-04-223-6/+6
| * | Removed ON() on distinct commentSebastian Martinez2011-04-221-1/+1
* | | split indexes and column types on money / binary iterationAaron Patterson2011-04-221-6/+5
* | | fetch result row arrays from pg in C and return early if there are no money o...Aaron Patterson2011-04-221-31/+36
* | | set the backtrace to prevent AR exceptions from lying to usAaron Patterson2011-04-221-1/+3
* | | removing incorrect comment and string concatenationAaron Patterson2011-04-221-4/+1
* | | Move #exec_insert to abstract adapter's database statements.Ken Collins2011-04-224-12/+7
| |/ |/|
* | stop using distinct on for the unique id queries. [#6450 state:resolved]Aaron Patterson2011-04-211-1/+1
|/
* Fix test_load_save in test/cases/binary_test.rb (thanks @tenderlove for actua...Jon Leighton2011-04-171-2/+1
* mimic prepared statements in the exec_insert for mysql2Aaron Patterson2011-04-141-0/+11
* mysql type cast should return integers when typecasting true / falseAaron Patterson2011-04-141-0/+6
* using the database adapter to typecast before executing prepared statementAaron Patterson2011-04-142-2/+14
* inserting big decimals as strings works consistently among dbs, so use string...Aaron Patterson2011-04-141-1/+1
* insert statements are prepared, but values are not escaped properlyAaron Patterson2011-04-144-2/+40
* adding a type cast method for prepared statementsAaron Patterson2011-04-142-1/+37
* do not depend on to_yaml being called, but rather depend on YAML being dumpedAaron Patterson2011-04-131-1/+1
* use index based substitution for bind parametersAaron Patterson2011-04-132-3/+3
* remove so many nested if statementsAaron Patterson2011-04-111-9/+11
* wrap the pg_get_serial_sequence function and reuse it for the default sequenc...Aaron Patterson2011-04-111-2/+10
* cache table exists queries in prepared statement cacheAaron Patterson2011-04-111-3/+6
* only use the primary_key method, refactor schema and table name parsingAaron Patterson2011-04-111-13/+15
* use prepared statements for primary key queriesAaron Patterson2011-04-111-2/+15
* last insert id can never be called, so remove that code pathAaron Patterson2011-04-111-11/+3
* we know the table and pk, so we can calculate a default sequence nameAaron Patterson2011-04-111-3/+4
* always look up pk and sequence unless both are providedAaron Patterson2011-04-111-6/+5
* pg does not know the insert_id in advance, so super will never return trueAaron Patterson2011-04-111-13/+10
* implement exec_query on mysql2 adapterAaron Patterson2011-04-111-2/+20
* make sqlite insert_sql more consistent with other adaptersAaron Patterson2011-04-111-1/+2
* adding exec_insert for postgresqlAaron Patterson2011-04-111-0/+4
* properly name schema queries for the loggerAaron Patterson2011-04-111-10/+10
* adding client_encoding method for discovering the encoding set for this clien...Aaron Patterson2011-04-111-0/+62
* properly name schema queries for loggingAaron Patterson2011-04-111-3/+3
* adding exec_insert to sqlite3Aaron Patterson2011-04-111-0/+4
* adding a case_sensitive_modifier for forcing comparisons to be case sensitiveAaron Patterson2011-04-113-0/+14
* only support pg >= 8.2, so no need to checkAaron Patterson2011-04-111-7/+4
* pg should define insert_sql so that query cache actually works for insertsAaron Patterson2011-04-101-2/+1
* community support for pg < 8.2 has ended, so we can drop support for those ve...Aaron Patterson2011-04-101-62/+12
* make sure that active connections are not cleared during test when an excepti...Aaron Patterson2011-03-291-2/+4
* clearing active connections in the ConnectionManagement middleware if an exce...Aaron Patterson2011-03-291-0/+3
* proxy body responses so we close database connections after body is flushedAaron Patterson2011-03-291-7/+24
* make sure we have an active database connection before running each connectio...Aaron Patterson2011-03-281-1/+5
* adding active_connections? to the connection pool for finding open connectionsAaron Patterson2011-03-281-0/+6
* adding active_connection? to the connection poolAaron Patterson2011-03-281-0/+6