1.1.1

Table Of Contents
If the table or view is in a particular schema, qualify it with the schema name. If the table or view name is
case-sensitive, enclose it in single quotes. You can display all the columns from all the tables and views in a
single schema in a single display by using the wildcard character '*'. See the examples below.
Example
sqlf(PEERCLIENT)> describe maps;
COLUMN_NAME
|TYPE_NAME|DEC&|NUM&|COLUM&|COLUMN_DEF|CHAR_OCTE&|IS_NULL&
------------------------------------------------------------------------------
MAP_ID |INTEGER |0 |10 |10
|AUTOINCRE&|NULL |NO
MAP_NAME |VARCHAR |NULL|NULL|24 |NULL |48
|NO
REGION |VARCHAR |NULL|NULL|26 |NULL |52
|YES
AREA |DECIMAL |4 |10 |8 |NULL
|NULL |NO
PHOTO_FORMAT |VARCHAR |NULL|NULL|26 |NULL |52
|NO
PICTURE |BLOB |NULL|NULL|102400|NULL
|NULL |YES
6 rows selected
sqlf(PEERCLIENT)>
disconnect
Disconnects from the database.
Syntax
DISCONNECT [ ALL | CURRENT |
ConnectionIdentifier
]
Description
Disconnects from the database. Specically issues a java.sql.Connection.close request against the
connection indicated on the command line. There must be a current connection at the time the request is made.
If ALL is specied, all known connections are closed and there will be no current connection.
Disconnect CURRENT is the same as Disconnect without indicating a connection; the default connection is
closed.
If a connection name is specied with an identier, the command disconnects the named connection. The name
must be the name of a connection in the current session provided with the connect on page 439 command.
If the connect on page 439 command without the AS clause was used, you can supply the name the system
generated for the connection. If the current connection is the named connection, when the command completes,
there will be no current connection and you must issue a set connection on page 457 or connect on page 439
command.
vFabric SQLFire User's Guide442
vFabric SQLFire Reference