<< DbQuery SciDb

SciDb >> SciDb > DbTables

DbTables

get list of tables in database

Calling Sequence

DbTables()
DbTables(dblink)

Parameters

dblink

a pointer to database connection object (returned by DbConnect())

Description

DbTables() gets the list of tables in the default database.

DbTables(dblink) gets the list of tables in database, represented by dblink.

Examples

// Opens a “PostgreSQL” connection with a connexion string
dblink = DbConnect("PSQL", ..
"Server=127.0.0.1;Database=myDataBase;User Id=myUsername;Password=myPassword;");

//list tables in dblink
DbTables(dblink);

//Disconnect from default (the last) database myDataBase
DbDisconnect();

See Also

Authors


Report an issue
<< DbQuery SciDb