_DB_ModifyTable, _DB_NewTable, _DB_RemoveTable, DB_AppendTable, DB_CreateTable, DB_GetCurrentTableName, DB_GetCurrentTableUName
Description
DB_AppendTable(
int64 DB_TableHandle
);
This function performs final step in creating new table and practically creates table itself using data in handle returned by DB_CreateTable and then filled by DB_AppendField function.
Parameters
DB_TableHandle
Handle returned by DB_CreateTable function.
See Also
DB_AppendField, DB_CreateTable
Description
int64 DB_CreateTable( char *Database
, char *User
, char *Table
, char *DB_Description
);
This function performs the first step of creating a new table and returns the handle which must be used with the DB_AppendField and DB_AppendTable functions to get a successful result.
Parameters
See Also
DB_AppendField, DB_AppendTable
Description
DB_GetCurrentTableName( char *DB_TableName
, intDB_TableNameSize
);
This function retrieves the name of the table that is opened in the active organizer pane currently.
See Also
DB_GetCurrentTableUName
Description
DB_GetCurrentTableUName( char *DB_TableID
, intDB_TableIDSize
);
This function retrieves a unique name of the table that is currently opened in the active organizer pane.
See Also
DB_GetCurrentTableName
This function runs the Database > Modify Table command.
Description
_DB_ModifyTable();
This function displays the Tables dialog box to enable choice of any modifiable table and change its fields or other properties.
See Also
_DB_NewTable, _DB_RemoveTable
This function runs the Database > New Table command.
Description
_DB_NewTable();
This function starts a wizard which specifies the table name, fields, etc.
See Also
_DB_ModifyTable, _DB_RemoveTable
This function runs the Database > Remove Table command.
Description
_DB_RemoveTable();
This function displays the Tables dialog box to enable choice of a table to remove.
See Also
_DB_NewTable, _DB_ModifyTable