aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Collapse)AuthorAgeFilesLines
...
* | use bind values for join columnsAaron Patterson2012-02-271-4/+4
| |
* | Merge pull request #5168 from kennyj/fix_5152Aaron Patterson2012-02-271-1/+1
|\ \ | | | | | | [PostgreSQL] Remove NULLS FIRST/LAST. Closes #5152
| * | Remove NULLS FIRST/LAST. closes #5152kennyj2012-02-251-1/+1
| | |
* | | Fix type_to_sql with text and limit on mysql/mysql2. Fix GH #3931.kennyj2012-02-261-9/+20
|/ /
* | removes verify_active_connections!Xavier Noria2012-02-241-15/+0
| | | | | | | | | | | | | | The method verify_active_connections! was used in the old days (up to 2.1 I think) by the dispatcher to verify the connections, but nowadays we do that in a different way and this method is obsolete.
* | prepared statements can be disabledAaron Patterson2012-02-216-28/+53
| |
* | more ruby 2.0 respond_to? changesAaron Patterson2012-02-211-1/+1
| |
* | tag bind params with a bind param objectAaron Patterson2012-02-203-3/+3
| |
* | removed commented line. 3434 tests, 10531 assertions, 0 failures, 0 errors, ↵William Lawson2012-02-201-1/+0
| | | | | | | | 31 skips
* | Restored ability to identify ID and Sequence from tables relying on a ↵William Lawson2012-02-201-16/+37
| | | | | | | | nonmatching sequence default value for PK.
* | use Process.pid rather than $$Aaron Patterson2012-02-163-7/+7
| |
* | database connections are automatically established after forking.Aaron Patterson2012-02-162-14/+52
| | | | | | | | Connection pools are 1:1 with pids.
* | Autoload various constants effectively in abstract connection adapter.Waseem Ahmad2012-02-161-9/+12
| |
* | Revert "No need to pass options which is never used"Rafael Mendonça França2012-02-151-2/+2
| | | | | | | | | | | | | | | | | | Options is needed for some Rails extensions to determine when referential integrity should be disabled This reverts commit bcb466c543451dce69403aaae047295758589d8e. Fixes #5052
* | remove unnecessary require core_ext/string/encodingSergey Nartimov2012-02-141-1/+0
| |
* | Alias reconnect! to reset! for Mysql2 adapter since they have sameWaseem Ahmad2012-02-121-5/+1
| | | | | | | | behavior.
* | PG column consults oid types when typecastingAaron Patterson2012-02-103-7/+22
| |
* | dynamically populate casting objects via the pg_type tableAaron Patterson2012-02-102-35/+74
| |
* | Merge branch 'joelhoffman-postgres_schema_builder' into instance_readerAaron Patterson2012-02-103-27/+41
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * joelhoffman-postgres_schema_builder: Also support writing the hstore back to the database Hstore values are all strings string_to_hstore / hstore_to_string, serializing don't test schema where hstore not installed schema dumper tests for hstore Additional hstore tests, supporting null values, better compliance with postgres docs add hstore to postgres native types and defaults Conflicts: activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
| * | Also support writing the hstore back to the databaseJoel2012-02-081-0/+5
| | |
| * | Hstore values are all stringsJoel2012-02-081-1/+1
| | |
| * | string_to_hstore / hstore_to_string, serializingJoel2012-02-082-11/+20
| | |
| * | Additional hstore tests, supporting null values, better compliance with ↵Joel2012-02-081-21/+17
| | | | | | | | | | | | postgres docs
| * | add hstore to postgres native types and defaultsJoel2012-02-081-1/+5
| | |
* | | Merge branch 'master' into instance_readerAaron Patterson2012-02-104-5/+25
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: Fix GH #4720. Routing problem with nested namespace and already camelized controller option. make Range#overlaps? accept Range of Time improved test case for partial indices Made schema dumper recognize partial indices' where statements Added where option to add_index to support postgresql partial indices
| * | | Made schema dumper recognize partial indices' where statementsMarcelo Silveira2012-02-092-2/+3
| | | |
| * | | Added where option to add_index to support postgresql partial indicesMarcelo Silveira2012-02-093-3/+22
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `add_index` method now supports a `where` option that receives a string with the partial index criteria. add_index(:accounts, :code, :where => "active") Generates CREATE INDEX index_accounts_on_code ON accounts(code) WHERE active
* | | fixing indentation, moving class methods togetherAaron Patterson2012-02-091-124/+124
| | |
* | | removing dead codeAaron Patterson2012-02-091-7/+0
| | |
* | | use the pg column to cast valuesAaron Patterson2012-02-081-1/+1
| | |
* | | only unescape bytea after it has been read from the databaseAaron Patterson2012-02-072-6/+4
| | |
* | | pgcolumn knows how to typecast binary columnsAaron Patterson2012-02-071-0/+6
| | |
* | | give each PG type a `type` method and decortate tz attributesAaron Patterson2012-02-071-12/+20
| | |
* | | hstores can be typecastAaron Patterson2012-02-071-0/+10
| | |
* | | columns are lazily typecast, so no more calls to `result_as_array`Aaron Patterson2012-02-071-1/+1
| | |
* | | taking column width in to account when fetching decimal fieldsAaron Patterson2012-02-072-2/+42
| | |
* | | return early from typecasting if the value is nilAaron Patterson2012-02-071-1/+15
| | |
* | | mapping more oidsAaron Patterson2012-02-071-1/+7
| | |
* | | many of the OIDs mapped and implementedAaron Patterson2012-02-072-1/+164
|/ /
* | delegate attribute typecasting to the columnAaron Patterson2012-02-061-0/+15
| |
* | prevents the database.yml template option from being passed to PGConnSean Kirby2012-02-061-1/+1
| |
* | columns method doesn't have name argumentRafael Mendonça França2012-02-021-1/+1
| |
* | Remove useless argument in #columns.Sebastian Martinez2012-02-024-4/+4
| |
* | use the class method to (un)escape binary valuesAaron Patterson2012-02-011-2/+2
|/
* Fixed issue with SQLite adapter corrupting binary dataChris Feist2012-01-311-16/+1
|
* QueryCache will just dup an AR::Result, AR::Result can deep copyAaron Patterson2012-01-311-9/+15
|
* always return the result set from select_allAaron Patterson2012-01-311-1/+1
|
* made the result set object act more like an arrayAaron Patterson2012-01-313-3/+3
|
* Merge pull request #4763 from kennyj/fix_4754Jon Leighton2012-01-311-1/+1
|\ | | | | [MySQL] Fix GH #4754. Remove double-quote characters around PK when using sql_mode=ANSI_QUOTES
| * Fix GH #4754. Remove double-quote when using ANSI_QUOTESkennyj2012-01-311-1/+1
| |