aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Collapse)AuthorAgeFilesLines
* Better docs formattingSebastian Martinez2011-04-221-10/+11
|
* Fix #postgresql_version docsSebastian Martinez2011-04-221-1/+1
|
* Added docs for #version on mysql_adapterSebastian Martinez2011-04-221-0/+1
|
* Added some docs on SQLite adapterSebastian Martinez2011-04-221-0/+5
|
* Make this docs more consistent with the rest of the docs presentSebastian Martinez2011-04-223-4/+6
|
* dot missing hereSebastian Martinez2011-04-221-1/+1
|
* Added doc for #table_exists?Sebastian Martinez2011-04-221-0/+4
|
* Added docs for #rename_table on some adaptersSebastian Martinez2011-04-223-0/+11
|
* Added docs for #columns on some adaptersSebastian Martinez2011-04-222-0/+2
|
* Merge branch 'master' of git://github.com/rails/railsXavier Noria2011-04-235-48/+46
|\
| * Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-04-233-8/+24
| |\ | | | | | | | | | | | | Conflicts: activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
| * | 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 ↵Aaron Patterson2011-04-221-31/+36
| | | | | | | | | | | | or binary columns. :heart:
| * | 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
| | |
* | | Added docs for #indexes on adaptersSebastian Martinez2011-04-223-1/+3
| |/ |/|
* | copy-edits 0e2644cXavier Noria2011-04-233-3/+3
| |
* | 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
|/
* Fix test_load_save in test/cases/binary_test.rb (thanks @tenderlove for ↵Jon Leighton2011-04-171-2/+1
| | | | actually working out how to fix it)
* 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 ↵Aaron Patterson2011-04-141-1/+1
| | | | string form
* 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 ↵Aaron Patterson2011-04-111-2/+10
| | | | sequence name
* 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
|