Trying to INSERT a string but if the length is greater than 254 I get an abend. Someone else suggested using bounded parameters to pass the text, but didn't tell me how to do that.
Any suggestions?
Here's the code (Using Visual FoxPro to run the SQL statement) stripped to show just the field in question:
mcomm = "INSERT INTO Main (comment) VALUES('mcomment')
mexec = SQLEXEC(gnConnHandle, mcomm)
If mcomment is > 254 I get the blowout.
TIA!!!!
Any suggestions?
Here's the code (Using Visual FoxPro to run the SQL statement) stripped to show just the field in question:
mcomm = "INSERT INTO Main (comment) VALUES('mcomment')
mexec = SQLEXEC(gnConnHandle, mcomm)
If mcomment is > 254 I get the blowout.
TIA!!!!