aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Make postgresql faster on development (thanks to @tapajos).José Valim2011-04-291-0/+8
| | |
* | | lean on rubygems to provide error messages about missing gemsAaron Patterson2011-04-291-9/+2
| | |
* | | supporting delete with bind parameters in mysql2Aaron Patterson2011-04-291-0/+8
| | |
* | | refactor exec_delete to reuse the statement cache from exec_queryAaron Patterson2011-04-291-70/+44
| | |
* | | statement cache for deletes working on mysqlAaron Patterson2011-04-291-0/+39
| | |
* | | sqlite3 supports prepared statement deletesAaron Patterson2011-04-291-0/+5
| | |
* | | postgresql supports prepare statement deletesAaron Patterson2011-04-292-24/+40
| | |
* | | clearing statement from cache on exception in order to support older ↵Aaron Patterson2011-04-281-3/+13
| | | | | | | | | | | | versions of mysql
* | | requiring a newer version of the mysql2 gemAaron Patterson2011-04-271-0/+1
| | |
* | | Merged pull request #310 from beanieboi/master.Aaron Patterson2011-04-261-1/+10
|\ \ \ | | | | | | | | Added support for tsvector datatype in postgres
| * | | Added tsvector Datatype SupportBenjamin Fritsch2011-04-261-1/+10
| | | | | | | | | | | | Applied Patch from https://rails.lighthouseapp.com/projects/8994/tickets/5577-suport-from-tsvector-data-type-in-postgresql
* | | | Use existing #empty_insert_statement_value for an insert with no columns.Ken Collins2011-04-242-8/+0
| |_|/ |/| |
* | | Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-04-233-8/+24
|\ \ \ | | |/ | |/| | | | | | | Conflicts: activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
| * | 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
| | |
* | | 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
|/
* 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
|