X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=doc%2Fref-connect.xml;h=35b8cf56b30aef8a446c903a152db9d7763eaf54;hb=fd2493718d0e1114fcbe3dd578dab658ea383e81;hp=4bc296b3fa843278fd26b9d80963f55a4dec18f5;hpb=528064c179b6b74f0a9d6a43c42e71de3f0e9a3a;p=clsql.git diff --git a/doc/ref-connect.xml b/doc/ref-connect.xml index 4bc296b..35b8cf5 100644 --- a/doc/ref-connect.xml +++ b/doc/ref-connect.xml @@ -22,7 +22,7 @@ DATABASE - Class DATABASE + DATABASE The super-type of all &clsql; databases Class @@ -71,7 +71,7 @@ *CONNECT-IF-EXISTS* - Variable *CONNECT-IF-EXISTS* + *CONNECT-IF-EXISTS* Default value for the if-exists parameter of connect. @@ -80,7 +80,7 @@ Value Type A valid argument to the if-exists - parameter of connect, i.e. one of + parameter of connect, that is, one of :new :warn-new @@ -131,18 +131,18 @@ *DEFAULT-DATABASE* - Variable *DEFAULT-DATABASE* + *DEFAULT-DATABASE* The default database object to use. Variable Value Type - Any object of type database, or nil to + Any object of type database, or &nil; to indicate no default database. Initial Value - nil + &nil; Description @@ -160,13 +160,13 @@ *default-database* to the first database that remains in the list of active databases as returned by connected-databases, or - nil if no further active databases + &nil; if no further active databases exist. The user may change *default-database* at any time to a valid value of his choice. If the value of *default-database* is - nil, then all calls to &clsql; functions on + &nil;, then all calls to &clsql; functions on databases must provide a suitable database parameter, or an error will be signalled. @@ -241,18 +241,18 @@ *DEFAULT-DATABASE-TYPE* - Variable *DEFAULT-DATABASE-TYPE* + *DEFAULT-DATABASE-TYPE* The default database type to use Variable Value Type Any keyword representing a valid database back-end of - &clsql;, or nil. + &clsql;, or &nil;. Initial Value - nil + &nil; Description @@ -261,7 +261,7 @@ connect as the default value of the database-type parameter. - If the value of this variable is nil, + If the value of this variable is &nil;, then all calls to initialize-database-type or connect will have to specify the @@ -300,7 +300,7 @@ *INITIALIZED-DATABASE-TYPES* - Variable *INITIALIZED-DATABASE-TYPES* + *INITIALIZED-DATABASE-TYPES* List of all initialized database types Variable @@ -311,7 +311,7 @@ Initial Value - nil + &nil; Description @@ -365,14 +365,13 @@ CONNECT - Function CONNECT + CONNECT create a connection to a database. Function Syntax - Syntax - connect connection-spec &key if-exists database-type pool make-default => database + connect connection-spec &key if-exists database-type pool make-default => database Arguments and Values @@ -406,8 +405,7 @@ A boolean flag. If &t;, acquire connection from a pool of open connections. If the pool is empty, a new - connection is created. The default is &nil;. This is a - &clsql; extension. + connection is created. The default is &nil;. @@ -417,8 +415,7 @@ A boolean flag. If &t;, *default-database* is set to the new connection, otherwise *default-database* - is not changed. The default is &t;. This is a &clsql; - extension. + is not changed. The default is &t;. @@ -580,7 +577,9 @@ Notes - None. + The pool and + make-default keyword arguments to + connect are &clsql; extensions. @@ -589,7 +588,7 @@ CONNECTED-DATABASES - Function CONNECTED-DATABASES + CONNECTED-DATABASES Return the list of active database objects. Function @@ -681,7 +680,7 @@ DATABASE-NAME - Generic Function DATABASE-NAME + DATABASE-NAME Get the name of a database object Generic Function @@ -798,7 +797,7 @@ DATABASE-NAME-FROM-SPEC - Generic Function DATABASE-NAME-FROM-SPEC + DATABASE-NAME-FROM-SPEC Return the database name string corresponding to the given connection specification. Generic Function @@ -911,7 +910,7 @@ DATABASE-TYPE - Generic Function DATABASE-TYPE + DATABASE-TYPE Get the type of a database object. Generic Function @@ -1000,7 +999,7 @@ DISCONNECT - Function DISCONNECT + DISCONNECT close a database connection Function @@ -1015,7 +1014,7 @@ error A boolean flag indicating whether to signal an error - if database is non-nil but cannot + if database is non-&nil; but cannot be found. @@ -1044,8 +1043,8 @@ returned by connect, and closes the connection. If no matching database is found and error and - database are both non-nil an error is - signaled, otherwise nil is returned. If the database is from a + database are both non-&nil; an error is + signaled, otherwise &nil; is returned. If the database is from a pool it will be released to this pool. @@ -1077,7 +1076,7 @@ *default-database*, then *default-database* is set to the first remaining database from - connected-databases or to nil if no + connected-databases or to &nil; if no further active database exists. @@ -1115,7 +1114,7 @@ DISCONNECT-POOLED - Function DISCONNECT-POOLED + DISCONNECT-POOLED closes all pooled database connections Function @@ -1179,7 +1178,7 @@ FIND-DATABASE - Function FIND-DATABASE + FIND-DATABASE >Locate a database object through it's name. Function @@ -1209,8 +1208,7 @@ db-type - A keyword symbol denoting a known database back-end. This - is a &clsql; extension. + A keyword symbol denoting a known database back-end. @@ -1218,8 +1216,8 @@ result Either a database object, or, if - errorp is nil, - possibly nil. + errorp is &nil;, + possibly &nil;. @@ -1240,11 +1238,11 @@ database. If it succeeds, it returns the first database found. - If db-type is nil all databases + If db-type is &nil; all databases matching the string database are considered. If no matching databases are found and - errorp is nil then nil is - returned. If errorp is nil and one or + errorp is &nil; then &nil; is + returned. If errorp is &nil; and one or more matching databases are found, then the most recently connected database is returned as a first value and the number of matching databases is returned as a second @@ -1321,7 +1319,9 @@ Notes - None. + The db-type keyword argument to + find-database is a &clsql; + extension. @@ -1330,7 +1330,7 @@ INITIALIZE-DATABASE-TYPE - Function INITIALIZE-DATABASE-TYPE + INITIALIZE-DATABASE-TYPE Initializes a database type Function @@ -1354,7 +1354,7 @@ result - Either nil if the initialization + Either &nil; if the initialization attempt fails, or t otherwise. @@ -1373,7 +1373,7 @@ *initialized-database-types*, if not already present. If initialization fails, the function returns - nil, and/or signals an error of type + &nil;, and/or signals an error of type clsql-error. The kind of action taken depends on the back-end and the cause of the problem. @@ -1444,7 +1444,7 @@ RECONNECT - Function RECONNECT + RECONNECT Re-establishes the connection between a database object and its RDBMS. Function @@ -1503,13 +1503,13 @@ database whose name matches database is sought in the list of connected databases. If no matching database is found and error and - database are both non-nil an error is - signaled, otherwise nil is returned. + database are both non-&nil; an error is + signaled, otherwise &nil; is returned. When the current database connection has been lost, if - force is non-nil as it is by default, the + force is non-&nil; as it is by default, the connection is closed and errors are suppressed. If - force is nil and the database connection + force is &nil; and the database connection cannot be closed, an error is signalled. @@ -1569,7 +1569,7 @@ STATUS - Function STATUS + STATUS Print information about connected databases. Function @@ -1595,7 +1595,7 @@ Description Prints information about the currently connected databases to *STANDARD-OUTPUT*. The argument - full is nil by default and a value of t + full is &nil; by default and a value of t means that more detailed information about each database is printed. @@ -1612,7 +1612,7 @@ CLSQL STATUS: 2004-06-13 15:07:39 localhost/test/petrov mysql nil localhost/test/petrov postgresql nil localhost/test/petrov postgresql-socket nil - mysql-test/petrov odbc nil + test/petrov odbc nil * :memory: sqlite nil -------------------------------------------------------- @@ -1676,7 +1676,7 @@ CLSQL STATUS: 2004-06-13 15:08:08 CREATE-DATABASE - Function CREATE-DATABASE + CREATE-DATABASE create a database Function @@ -1774,7 +1774,7 @@ error: 'Access denied for user: 'root@localhost' (Using password: YES)' DESTROY-DATABASE - Function DESTROY-DATABASE + DESTROY-DATABASE destroys a database Function @@ -1871,7 +1871,7 @@ Error: While trying to access database localhost/test2/root PROBE-DATABASE - Function PROBE-DATABASE + PROBE-DATABASE tests for existence of a database Function @@ -1954,7 +1954,7 @@ Error: While trying to access database localhost/test2/root LIST-DATABASES - Function LIST-DATABASES + LIST-DATABASES List databases matching the supplied connection spec and database type. Function @@ -2052,7 +2052,7 @@ Error: While trying to access database localhost/test2/root WITH-DATABASE - Macro WITH-DATABASE + WITH-DATABASE Execute a body of code with a variable bound to a specified database object. Macro @@ -2168,7 +2168,7 @@ Error: While trying to access database localhost/test2/root WITH-DEFAULT-DATABASE - Macro WITH-DEFAULT-DATABASE + WITH-DEFAULT-DATABASE Execute a body of code with *default-database* bound to a specified database. Macro @@ -2206,8 +2206,9 @@ Error: While trying to access database localhost/test2/root Description - Perform BODY with DATABASE bound as - *default-database*. + Perform body with + DATABASE bound as + *default-database*.