Page 1 of 1

DatabaseQuery

Posted: Fri Jul 02, 2004 12:48 pm
by Mikethebike
Hello
Maybe somebody could explain me why this is not working and what would be the
correct syntax.

DatabaseQuery("Select * FROM kunden WHERE KdNr = 2")

should output the 2. Client(Kunden) but nothing happens. But on the
other side this is working:
DatabaseQuery("Select * FROM kunden")
Thanks
Michael :wink:

Posted: Fri Jul 02, 2004 2:15 pm
by Num3
You have to make a close captation on values and search strings...

" Select * From **** where **** = '2' "
" Select * From **** where **** = 'Num3' "