aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-05-17 17:11:53 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-05-17 17:46:07 +0530
commitb71a90060fb94709cceb3b2d80c3de6fd12a6e22 (patch)
tree2fe7561b174290ffa724e9e533b7789f3558a4db
parenta3a25e7e447a26422db3962ba44b809f809c7729 (diff)
downloadrails-b71a90060fb94709cceb3b2d80c3de6fd12a6e22.tar.gz
rails-b71a90060fb94709cceb3b2d80c3de6fd12a6e22.tar.bz2
rails-b71a90060fb94709cceb3b2d80c3de6fd12a6e22.zip
Revert "Update docs in sqlite3 adapter"
This reverts commit 8d7c38b858b0190ac56998f4a4baba250eaf1e4e. Reason: Lot of the additions aren't adding value. [ci skip]
-rw-r--r--activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb24
1 files changed, 12 insertions, 12 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb b/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
index 43756f48e0..7b4be67131 100644
--- a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
@@ -48,7 +48,7 @@ module ActiveRecord
end
end
- # The SQLite3 adapter works with SQLite 3.6.16 or newer,
+ # The SQLite3 adapter works SQLite 3.6.16 or newer
# with the sqlite3-ruby drivers (available as gem from https://rubygems.org/gems/sqlite3).
#
# Options:
@@ -123,17 +123,17 @@ module ActiveRecord
'SQLite'
end
- # Returns true, since this connection adapter supports ddl transactions.
+ # Returns true
def supports_ddl_transactions?
true
end
- # Returns true if SQLite version supports savepoints, false otherwise.
+ # Returns true if SQLite version is '3.6.8' or greater, false otherwise.
def supports_savepoints?
sqlite_version >= '3.6.8'
end
- # Returns true, since this connection adapter supports prepared statement.
+ # Returns true, since this connection adapter supports prepared statement
# caching.
def supports_statement_cache?
true
@@ -144,7 +144,7 @@ module ActiveRecord
true
end
- # Returns true, since this connection adapter supports primary key.
+ # Returns true.
def supports_primary_key? #:nodoc:
true
end
@@ -153,12 +153,13 @@ module ActiveRecord
true
end
- # Returns true, since this connection adapter supports add column.
+ # Returns true
def supports_add_column?
true
end
-
- # Disconnects from the database if already connected.
+
+ # Disconnects from the database if already connected. Otherwise, this
+ # method does nothing.
def disconnect!
super
clear_cache!
@@ -170,17 +171,16 @@ module ActiveRecord
@statements.clear
end
- # Returns true, since this connection adapter count distinct.
+ # Returns true
def supports_count_distinct? #:nodoc:
true
end
- # Returns true, since this connection adapter supports autoincrement.
+ # Returns true
def supports_autoincrement? #:nodoc:
true
end
- # Returns true, since this connection adapter supports
def supports_index_sort_order?
true
end
@@ -207,7 +207,7 @@ module ActiveRecord
@connection.encoding.to_s
end
- # Returns true, since this connection adapter supports explain.
+ # Returns true.
def supports_explain?
true
end