diff options
-rw-r--r-- | lib/sqlite3/database.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sqlite3/database.rb b/lib/sqlite3/database.rb index ca955fd..627166c 100644 --- a/lib/sqlite3/database.rb +++ b/lib/sqlite3/database.rb @@ -147,6 +147,9 @@ module SQLite3 # Returns a Statement object representing the given SQL. This does not # execute the statement; it merely prepares the statement for execution. + # + # The Statement can then be executed using Statement#execute. + # def prepare( sql ) stmt = @statement_factory.new( self, sql ) if block_given? |