Search found 2 matches

by octopushole
18.01.2009, 10:20
Forum: 6.6 - stable
Topic: absolute beginner and 'row data is not available' error mess
Replies: 2
Views: 840

I solved the problem myself and will post the solution here as a help to all Zeos users: Zeos does not handle selectable procedures like select ... from ProcedureName(...) for MSSQL. Use TStoredProc and old fashioned non-selectable procedure with TZStoredProc.Create(self) do try Connection := Source...
by octopushole
15.01.2009, 22:33
Forum: 6.6 - stable
Topic: absolute beginner and 'row data is not available' error mess
Replies: 2
Views: 840

absolute beginner and 'row data is not available' error mess

I am using Zeos v. 6.6.4 with Delphi 5 Enterprise to copy data from MSSql Server 2005 Enterprise to Firebird 1.5 . Most of code works ok, but now I am stuck with the following problem: In MSSQL I have the SP below (GetPK). The SP takes the tables name and returns its primary key. I call the SP from ...