solidDB Help : solidDB reference : solidDB SA: Function reference : SaCursorCreate
  
SaCursorCreate
SaCursorCreate creates a cursor to a table specified by table name. The operation fails if the table does not exist.
Synopsis
SaCursorT* SA_EXPORT_H SaCursorCreate(
  SaConnectT* scon,
  char* tablename)
Parameters
The following table describes the parameters:
 
Parameters
Usage type
Description
scon
in, hold
Pointer to a connection object
tablename
in, use
Table name
Return value
The parameter scon has the usage type "hold" because the created cursor object keeps referencing the scon object even after the function call has returned.
 
Return usage type
Description
give
Pointer to the cursor object, or NULL if table does not exist.
Go up to
solidDB SA: Function reference