aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Allow the connection pool's #table_exists? method to give the connections ↵Ken Collins2011-06-101-0/+1
|/ / | | | | | | #table_exists? method a chance.
* | No need to pass options which is never usedAkira Matsuda2011-05-291-2/+2
| |
* | Merge branch 'master' of github.com:rails/railsXavier Noria2011-05-251-29/+2
|\ \
| * | removed deprecated methods, and related tests, from ActiveRecordJosh Kalderimis2011-05-251-29/+2
| | |
* | | Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-05-253-6/+6
|\ \ \ | |/ / |/| | | | | | | | | | | Conflicts: actionmailer/lib/action_mailer/base.rb activesupport/lib/active_support/core_ext/kernel/requires.rb
| * | Remove extra white spaces on ActiveRecord docs.Sebastian Martinez2011-05-233-6/+6
| |/
* / Remove extra white-space on some exception messages.Sebastian Martinez2011-05-232-2/+2
|/
* use a null byte as a bind parameter substitute as it is not allowed in ↵Aaron Patterson2011-05-091-9/+1
| | | | normal SQL. fixes #411, #417
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-05-041-6/+6
|\
| * Fixes on schema_definitions docsSebastian Martinez2011-05-031-3/+3
| |
| * fixed-fonts on SchemaDefinitionsSebastian Martinez2011-05-021-3/+3
| |
* | introduce a body proxy to ensure that query cache is enabled during streamingAaron Patterson2011-05-021-0/+8
|/
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-05-013-15/+20
|\ | | | | | | | | Conflicts: railties/guides/source/contributing_to_ruby_on_rails.textile
| * Merge branch 'master' of github.com:lifo/docrailsDan Pickett2011-04-293-15/+20
| |\
| | * Fixed punctuation errors.Sebastian Martinez2011-04-221-4/+4
| | |
| | * Better docs formattingSebastian Martinez2011-04-221-10/+11
| | |
| | * dot missing hereSebastian Martinez2011-04-221-1/+1
| | |
| | * Added doc for #table_exists?Sebastian Martinez2011-04-221-0/+4
| | |
* | | using bind parameters for updatesAaron Patterson2011-04-301-4/+11
|/ /
* | postgresql supports prepare statement deletesAaron Patterson2011-04-291-2/+9
| |
* | Use existing #empty_insert_statement_value for an insert with no columns.Ken Collins2011-04-241-4/+0
|/
* Move #exec_insert to abstract adapter's database statements.Ken Collins2011-04-221-0/+7
|
* 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-141-2/+20
|
* adding a type cast method for prepared statementsAaron Patterson2011-04-141-0/+36
|
* do not depend on to_yaml being called, but rather depend on YAML being dumpedAaron Patterson2011-04-131-1/+1
|
* make sure that active connections are not cleared during test when an ↵Aaron Patterson2011-03-291-2/+4
| | | | exception happens
* clearing active connections in the ConnectionManagement middleware if an ↵Aaron Patterson2011-03-291-0/+3
| | | | exception happens
* 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 ↵Aaron Patterson2011-03-281-1/+5
| | | | connection management test
* 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
|
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-03-232-4/+2
|\
| * remove bank linePaco Guzman2011-03-181-1/+0
| |
| * Remove incorrect comment that a default value of NULL cannot be set with ↵Manuel Meurer2011-03-161-3/+2
| | | | | | | | change_column_default.
* | pushing id insertion and prefetch primary keys down to Relation#insertAaron Patterson2011-03-221-0/+4
|/
* implements ActiveRecord::Base.connection_config to be able to check the ↵Xavier Noria2011-03-051-0/+10
| | | | configuration of the current connection at runtime
* fixture should quack like a hashAaron Patterson2011-02-111-1/+9
|
* Allow limit values to accept an ARel SQL literal.Ken Collins2011-02-091-3/+7
|
* primary keys should not be cleared on cache clear, fixing oracle testsAaron Patterson2011-02-081-2/+0
|
* limit() should sanitize limit valuesAaron Patterson2011-02-081-15/+15
| | | | This fixes CVE-2011-0448
* the connection pool caches table_exists? callsAaron Patterson2011-02-071-8/+14
|
* adjust query counts to be consistent across databases, make sure database ↵Aaron Patterson2011-02-041-5/+9
| | | | log the same things
* column cache now lives on the connection poolAaron Patterson2011-02-041-1/+5
|
* almost fistedAaron Patterson2011-02-041-0/+7
|
* making sure primary key is set on the columnsAaron Patterson2011-02-041-1/+9
|
* connection pool can cache column, table, and primary key informationAaron Patterson2011-02-041-0/+34
|
* Revert "ARel only requires the connection from the AR class. Simply return ↵Aaron Patterson2011-02-031-24/+24
| | | | | | the AR class rather than jump through hoops and store ivars" This reverts commit d65e3b481e72e8c76818a94353e9ac315c7c0272.
* ARel only requires the connection from the AR class. Simply return the AR ↵Aaron Patterson2011-02-031-24/+24
| | | | class rather than jump through hoops and store ivars
* moving AR::ConnectionAdapters::Column to its own fileAaron Patterson2011-02-011-263/+0
|