Search found 2 matches

by Moron
19.03.2006, 13:19
Forum: 6.1.5
Topic: problem with SUM,COUNT etc. results in SQL
Replies: 1
Views: 1541

Solved

After many hours I finally figure it out. So For everyone who has a similar problem:

Ensure that You call at least once

Code: Select all

 resultSet.next
before you try to call something like

Code: Select all

resultSet.GetLong(1)
:roll:
by Moron
18.03.2006, 03:08
Forum: 6.1.5
Topic: problem with SUM,COUNT etc. results in SQL
Replies: 1
Views: 1541

problem with SUM,COUNT etc. results in SQL

Sorry if this is too stupid question (and sorry for my english too) I tried to find some solution but wasn't successful. I am not able to obtain results of SQL functions like SUM,MAX, LAST_INSERT_ID() with IZStatement like You can see below Part of my code: var sqlDotaz : string; statement : IZState...