dbBindTimeStampParam |
Top Previous Next |
Syntax INT = dbBindTimeStampParam(hstmt as INT,param as INT,ts as DBTIMESTAMP) Description Binds a DBTIMESTAMP variable to be used as a parameter in a prepared SQL statement. Parameters hstmt - A statement handle returned by dbPrepareSQL. param - The ones based parameter number to bind. ts - A UDT of type DBTIMESTAMP Return value TRUE if variable bound successfully, FALSE otherwise. Remarks A parameter is denoted by a ? in the SQL statement. There must be exactly one bound variable for each parameter. Example usage DEF ts as DBTIMESTAMP |