dbBindTimeParam |
Top Previous Next |
Syntax INT = dbBindTimeParam(hstmt as INT,param as INT,tm as DBTIME) Description Binds a DBTIME 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. tm - A UDT of type DBTIME 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 tm as DBTIME |