Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQLPT question
Message
From
26/07/2002 00:34:40
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Client/server
Title:
SQLPT question
Miscellaneous
Thread ID:
00682865
Message ID:
00682865
Views:
54
Hi,

A function receives a table name and a where condition and is supposed to count the records that meet the condition in a Sql server database.

(calling function)
lc = has desired value for fieldname
n = MyCount([tablename],[fieldname = "] + lc + ["])

FUNCTION MyCount
LPARAMETERS tcTable,tcCondition
...
jc = [SELECT COUNT(*) AS c FROM dbo.] + tcTable + [ ] + tcTable ;
+ IIF(EMPTY(tcCondition),[],[ WHERE ]+ tcCondition)
lnRetVal = SQLEXEC(lnHandle,jc)
...

Problem is lnRetVal = -1 because of tcCondition. If tcCondition were blank, no problem.

Any ideas? TIA,

Alex
Next
Reply
Map
View

Click here to load this message in the networking platform