Logical Values Must Be Sent to SQL Server as 1 or 0Last reviewed: April 30, 1996Article ID: Q130507 |
The information in this article applies to:
SUMMARYWhen you send logical data to SQL Server via the SQLEXEC() function, true (.T.) and false (.F.) values must be sent as 1 and 0.
MORE INFORMATIONThe following example shows how to use the Insert command to add a record that has a logical field:
nHandle = SQLCONNECT('<data source name>','<user>','<password>') nSuccess = SQLEXEC(handle,'insert into tablename (logicalfield) values (1)')This puts a logical true value into the table on SQL Server.
|
Additional reference words: 3.00 VFoxWin ODBC
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |