Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL Server pass thru transaction problem
Message
From
04/12/2002 19:42:21
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Client/server
Title:
SQL Server pass thru transaction problem
Miscellaneous
Thread ID:
00729697
Message ID:
00729697
Views:
75
I am using SPT as follows:
SQLSETPROP(nhandle,'TRANSACTIONS',2) && start manual transactions
SQLSETPROP(nHandle,'Asynchronous',.T.) && use asynchronous processing

lcCmd = "A delete followed by an insert to update a data record"

lnSuccess = 0
DO WHILE lnSuccess = 0
   lnSuccess = SQLEXEC(nHandle,lcCmd,'SQLResults')
ENDDO

IF lnSuccess < 1
   SQLROLLBACK(nHandle)
ELSE
   SQLCOMMIT(nHandle)
ENDIF

SQLSETPROP(nhandle,'TRANSACTIONS',1) && end manual transactions
My problem is that even though an error is encountered by the SQL insert command, lnSuccess returns 1. The error is that one string that I am attempting to save is longer than the field. The Query Analyzer reports the error when I issue the SQL Commands there. Since lnSuccess is 1, I commit the transaction but the insert has failed.

From Query Analyzer:
Server: Msg 8152, Level 16, State 9, Line 1
String or binary data would be truncated.
The statement has been terminated.
Does anyone understand why this is happening?
Next
Reply
Map
View

Click here to load this message in the networking platform