Board index » delphi » What is BDE error $2749?
bgsis...@datasync.com
![]() Delphi Developer |
Sat, 31 Mar 2001 03:00:00 GMT
What is BDE error $2749?
I've suddently started getting BDE error $2749 on a stored procedure
pointed at a MSSQL 6.5 stored procedure. Checking http://www.inprise.com/devsupport/bde/ti_list/TI3212.html, there is no such error listed. I get the error when I execute NEXT from the last row of a result set. Following is the code I am using. The only change I made since it worked was to add a boolean (MSSQL bit) input parameter to the stored procedure. The while not eof loop populates cbxCallPlan fine; it just blows up on the NEXT from the last row. I'm using virtually the same procedure thoughout the program and this is the only one that's giving me problems. Can anybody tell me what might be going on here? dmGet.stpCallPlanValid.open; dmGet.stpCallPlanValid.close; |