aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)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
|\ \ \
| * | | 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
* | | 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, 3...William Lawson2012-02-201-1/+0
* | | Restored ability to identify ID and Sequence from tables relying on a nonmatc...William Lawson2012-02-201-16/+37
* | | use Process.pid rather than $$Aaron Patterson2012-02-163-7/+7
* | | database connections are automatically established after forking.Aaron Patterson2012-02-162-14/+52
* | | 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
* | | 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
* | | 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
|\ \ \
| * | | 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 postg...Joel2012-02-081-21/+17
| * | | add hstore to postgres native types and defaultsJoel2012-02-081-1/+5
* | | | Merge branch 'master' into instance_readerAaron Patterson2012-02-104-5/+25
|\ \ \ \
| * | | | 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
| |/ / /
* | | | 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
|\ \
| * | Fix GH #4754. Remove double-quote when using ANSI_QUOTESkennyj2012-01-311-1/+1