aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* do not compile regexp on every callAaron Patterson2011-12-201-16/+14
* hstores can cycleAaron Patterson2011-12-201-4/+31
* can create hstore records via AR APIAaron Patterson2011-12-201-5/+9
* multiple key / values workAaron Patterson2011-12-201-1/+4
* PostgreSQL hstore types are automatically deserialized from the database.Aaron Patterson2011-12-202-0/+6
* pg columns should understand the hstore typeAaron Patterson2011-12-201-47/+53
* handle not only strings in date type castSergey Nartimov2011-12-191-7/+11
* Should clear the primary keys cache alsoJon Leighton2011-12-161-0/+1
* Don't store defaults in the schema cacheJon Leighton2011-12-161-3/+2
* Defaults hash can go on the modelJon Leighton2011-12-161-14/+1
* Cache columns at the model level.Jon Leighton2011-12-161-9/+2
* Revert naive O(1) table_exists? implementation.Jon Leighton2011-12-133-12/+15
* Use `table_exists?` from the schema cache.Aaron Patterson2011-12-091-4/+2
* don't need a begin / end.Aaron Patterson2011-12-091-6/+4
* squelch table exists? queries.Aaron Patterson2011-12-091-1/+1
* Exceptions should read from the spec configuAaron Patterson2011-12-081-1/+1
* fix nodocsVijay Dev2011-12-091-3/+3
* fix commentsVijay Dev2011-12-091-4/+2
* Use a hash to look up column definitionsAaron Patterson2011-12-071-2/+3
* try to normalize the objects passed to column()Aaron Patterson2011-12-071-9/+11
* automatically add the column definition to the columns list if creating a new...Aaron Patterson2011-12-071-12/+21
* stop calling String#to_s so frequentlyAaron Patterson2011-12-071-3/+4
* the required sqlite3 adapter responds to encoding, so stop checking.Aaron Patterson2011-12-071-5/+1
* Quitoting the table name before querying.Aaron Patterson2011-12-051-1/+1
* Speed up table_exists? for databases with a large number of tablesJade Rubick2011-12-051-1/+6
* SQlite3 Bump Arun Agrawal2011-12-041-1/+1
* Use show create table.kennyj2011-12-031-3/+8
* implements automatic EXPLAIN logging for slow queriesXavier Noria2011-12-025-78/+98
* push synchronization in to each method. Reduces method calls and makesAaron Patterson2011-11-291-25/+29
* Automatic closure of connections in threads is deprecated. For exampleAaron Patterson2011-11-291-1/+7
* AbstractAdapter#close can be called to add the connection back to theAaron Patterson2011-11-292-11/+19
* Start implementing @reserved_connections in terms of connection leases.Aaron Patterson2011-11-291-3/+3
* Rename `checked_out` to more descriptive `active_connections`Aaron Patterson2011-11-291-3/+3
* Use connection lease to determine "checked_out" connectionsAaron Patterson2011-11-291-17/+21
* expire will set in_use to falseAaron Patterson2011-11-291-0/+5
* Leased connections return false on second leaseAaron Patterson2011-11-291-2/+4
* Adapters keep in_use flag when leasedAaron Patterson2011-11-291-1/+14
* Deprecate set_primary_key in favour of self.primary_key=Jon Leighton2011-11-291-1/+1
* respond_to? information of AR is not the responsibility of the specAaron Patterson2011-11-291-7/+9
* remove unused instance variableAaron Patterson2011-11-281-1/+0
* just check in all connectionsAaron Patterson2011-11-281-6/+2
* Move connection resoluion logic to it's own testable class.Aaron Patterson2011-11-281-58/+74
* clean up string => hash conversion for connection poolAaron Patterson2011-11-281-19/+17
* pools are 1:1 with spec now rather than 1:1 with classAaron Patterson2011-11-282-4/+8
* break establish_connection to smaller methodsAaron Patterson2011-11-281-30/+40
* Bump Mysql2!Arun Agrawal2011-11-221-1/+1
* oops! I suck! :bomb:Aaron Patterson2011-11-201-1/+0
* removing deprecated methodsAaron Patterson2011-11-193-26/+0
* adding visitors to the respective adaptersAaron Patterson2011-11-192-0/+2
* pushing caching and visitors down to the connectionAaron Patterson2011-11-194-81/+107