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