aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |
* | query cache instrumentation should included the bindings in the payload ↵Xavier Noria2012-01-301-1/+1
|/ | | | [closes #4750]
* Add `create_join_table` migration helper to create HABTM join tablesRafael Mendonça França2012-01-271-0/+42
|
* Handle nil in add_index :length option in MySQLPaul Sadauskas2012-01-241-1/+1
| | | | | | | | | | | | | | | | | Our schema.rb is being generated with an `add_index` line similar to this: add_index "foo", ["foo", "bar"], :name => "xxx", :length => {"foo"=>8, "bar=>nil} This is the same as it was on Rails 3.1.3, however, now when that schema.rb is evaluated, its generating bad SQL in MySQL: Mysql::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '))' at line 1: CREATE UNIQUE INDEX `xxx` ON `foo` (`foo`(8), `bar`()) This commit adds a check for nil on the length attribute to prevent the empty parens from being output.
* Only show the type if column is presentRafael Mendonça França2012-01-231-1/+2
|
* Don't type-cast unknown types to YAML.Stephen Celis2012-01-201-1/+1
|
* avoid useless is_a checksAaron Patterson2012-01-191-8/+8
|
* use Rack::BodyProxy in activerecord middlewaresSergey Nartimov2012-01-161-31/+5
|
* refactor schema migration table creation to the schema migration modelAaron Patterson2012-01-131-9/+1
|
* use the schema migration model to dump schema infoAaron Patterson2012-01-131-2/+5
|
* on and ON are type casted to a true boolean columnSantiago Pastorino2012-01-111-2/+2
|
* dropping support for `schema_info`.Aaron Patterson2012-01-101-12/+0
|
* Remove Array.wrap calls in ActiveRecordRafael Mendonça França2012-01-061-5/+4
|
* delete reaping frequency from the db configAaron Patterson2012-01-051-4/+6
|
* Postgresql: restore previous behaviour regarding to nil values in connection ↵Lars Kanis2012-01-051-0/+1
| | | | specification Hash
* Postgresql: Allow setting of any libpq connection parametersLars Kanis2012-01-031-17/+23
|
* updating the reaping frequency documentationAaron Patterson2011-12-301-0/+3
|
* rename start to run and use Thread.pass rather than sleeping to schedule the ↵Aaron Patterson2011-12-301-2/+2
| | | | watchdog
* connection pool starts the reaperAaron Patterson2011-12-301-0/+1
|
* connection specification will deep copy the configAaron Patterson2011-12-301-0/+4
|
* each connection pool has a reaperAaron Patterson2011-12-302-2/+6
|
* introduce a timer class for reaping connectionsAaron Patterson2011-12-301-0/+19
|
* raise a pull full error when the connection pool is full and no connection ↵Aaron Patterson2011-12-301-18/+20
| | | | can be obtained
* connections are only removed if they are inactveAaron Patterson2011-12-301-1/+1
|
* connections can be reaped via the `reap` methodAaron Patterson2011-12-301-0/+12
|
* deal with removing connections associated with the current threadAaron Patterson2011-12-301-0/+7
|
* connections can be removed from the poolAaron Patterson2011-12-301-1/+9
|
* queue and signal no longer neededAaron Patterson2011-12-301-2/+0
|
* refactor checking out the connectionAaron Patterson2011-12-301-5/+6
|
* infinite loop is no longer necessaryAaron Patterson2011-12-301-20/+11
|
* connections must be checked in at the end of a threadAaron Patterson2011-12-301-17/+1
|
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2011-12-291-9/+2
|\
| * Document that index names are made up of all columns, not just the first.Jo Liss2011-12-271-9/+2
| | | | | | | | | | | | | | | | | | | | | | index_name has been using the following expression "index_#{table_name}_on_#{Array.wrap(options[:column]) * '_and_'}" since at least 2006 (bc7f2315), and that's how they come out in my DB. Please check that this is correct before merging into master, perhaps I'm misunderstanding the section I changed.
* | Support establishing connection on ActiveRecord::Model.Jon Leighton2011-12-288-190/+85
|/ | | | | This is the 'top level' connection, inherited by any models that include ActiveRecord::Model or inherit from ActiveRecord::Base.
* remove checks for encodings availabilitySergey Nartimov2011-12-252-47/+43
|
* deprecate String#encoding_aware? and remove its usageSergey Nartimov2011-12-241-17/+9
|
* Extract common logic into a methodJon Leighton2011-12-241-6/+1
|
* I herd you like modules.Jon Leighton2011-12-246-62/+63
|
* removing deprecated methodsAaron Patterson2011-12-211-28/+0
|
* do not compile regexp on every callAaron Patterson2011-12-201-16/+14
|