Generic Function DATABASE-TYPE — Get the type of a database object.
Generic Function
database-type DATABASE => type
A database object, either of type database or of type closed-database.
A keyword symbol denoting a known database back-end.
Returns the type of database.
(connect '(nil "template1" "dent" nil) :database-type :postgresql) => #<CLSQL-POSTGRESQL:POSTGRESQL-DATABASE {48392D2D}> (database-type *default-database*) => :postgresql
None.
None.
Will signal an error if the object passed as the database parameter is neither of type database nor of type closed-database.
database-type is a CLSQL extension.