Fix transposed letters
authorKevin Rosenberg <kevin@rosenberg.net>
Fri, 4 Sep 2009 17:57:30 +0000 (11:57 -0600)
committerKevin Rosenberg <kevin@rosenberg.net>
Fri, 4 Sep 2009 17:57:30 +0000 (11:57 -0600)
ChangeLog
doc/ref-clsql.xml
doc/ref-connect.xml
sql/db-interface.lisp

index b1108b6315d917fb3d2e20de0867a51a1d4e401a..1be57d613c35ae66438b80df7a0538e99ba018e6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,17 +1,19 @@
 04 Sep 2009  Kevin Rosenberg <kevin@rosenberg.net>
        * sql/fdml.lisp: Rework do-query to use supplied database
-       parameter when passed a sql-object-query 
+       parameter when passed a sql-object-query
        (thanks to JTK <jetmonk@gmail.com>)
        * sql/generic-postgresql.lisp: Allow optional connect
        parameters for postgresql databases (thanks to Stephen Compall)
+       * doc/ref-{clsql,connect}.xml, sql/db-interfaces.lisp:
+       Fix transposed letters (thanks to Stephen Compall)
 
 31 Aug 2009  Kevin Rosenberg <kevin@rosenberg.net>
-       * sql/db-interface.lisp: Fix spelling error (thanks to 
+       * sql/db-interface.lisp: Fix spelling error (thanks to
        David Thompson)
        * clsql-mysql.asd/db-mysql/mysql-loader.lisp: Commit
        patch from Andreas Franke to honor windows drive letter
        when loading clsql_mysql C library.
-       
+
 31 Aug 2009  Kevin Rosenberg <kevin@rosenberg.net>
        * Version 4.1.0
        * db-mysql/mysql-{sql,api}.lisp,db-mysql/clsql_mysql.c:
@@ -35,7 +37,7 @@
        in database-list function (thanks to Michael Pheasant)
        * sql/oodml.lisp: Allow NULL values for floating-point fields
        (thanks to Jan Rychter)
-       
+
 02 Jun 2009  Kevin Rosenberg <kevin@rosenberg.net>
        * Version 4.0.5
        * sql/database.lisp: Add process-lock for deleting database from
index d483332d27d21ac2c039e8bc73343c98835db7d5..b44ac4d743ef416bcd2ac3d1384a23e1f6f29bb2 100644 (file)
@@ -1510,7 +1510,7 @@ error: 'Access denied for user: 'root@localhost' (Using password: YES)'
 =>
 Error: While trying to access database localhost/test2/root
   using database-type POSTGRESQL:
-  Error database-destory failed: dropdb: database removal failed: ERROR:  database "test2" does not exist
+  Error database-destroy failed: dropdb: database removal failed: ERROR:  database "test2" does not exist
   has occurred.
   [condition type: CLSQL-ACCESS-ERROR]
        </screen>
index 56dd15a2392c1e925500ba66a758870eb5483fd0..d9c992e62837ec41c69a1966e6d8b2a265b0f197 100644 (file)
@@ -1825,7 +1825,7 @@ error: 'Access denied for user: 'root@localhost' (Using password: YES)'
 =>
 Error: While trying to access database localhost/test2/root
   using database-type POSTGRESQL:
-  Error database-destory failed: dropdb: database removal failed: ERROR:  database "test2" does not exist
+  Error database-destroy failed: dropdb: database removal failed: ERROR:  database "test2" does not exist
   has occurred.
   [condition type: CLSQL-ACCESS-ERROR]
        </screen>
index 47fc3fdda1e0d3f34b152d581e7072bcc00b03e7..031d1e8ae7fb7b8f632acd056b398bcd288550dd 100644 (file)
@@ -141,17 +141,14 @@ if not found. May signal an error if unable to communicate with database server.
   (:documentation
    "Lists all databases found for TYPE. May signal an error if unable to communicate with database server."))
 
-(defgeneric database-destroy (connection-spec database)
-  (:documentation "Destroys (drops) a database."))
-
 (defgeneric database-truncate (database)
   (:method ((database t))
     (signal-no-database-error database))
   (:documentation "Remove all data from database."))
 
-(defgeneric database-destory (connection-spec type)
+(defgeneric database-destroy (connection-spec type)
   (:documentation
-   "Destroys a database, returns T if successfull or signals an error
+   "Destroys (drops) a database, returns T if successfull or signals an error
 if unable to destory."))
 
 (defgeneric database-create-sequence (name database)