SqlSend%

Sends statements in the command buffer to SQL Server and does not wait for a response.

Syntax

SqlSend% ( sqlconn% )

where

sqlconn% ( )
Is a SQL Server connection. The value of sqlconn% is returned by SqlOpen%.

Returns

SUCCEED (1) or FAIL (0).

Remarks

SqlSend% sends Transact-SQL statements stored in the command buffer to SQL Server. You can add statements to the command buffer by calling SqlCmd%. Once SqlSend% returns SUCCEED, you must call SqlOk% to verify the accuracy of the statements in the command buffer. Then call SqlResults% to process the results.

See Also

SqlCmd%, SqlExec%, SqlNextRow%, SqlOk%, SqlResults%, SqlSetTime%