SELECT r.rec
FROM r
WHERE exists
(SELECT *
FROM u
WHERE ( u.id = :arg_id ) AND
( u.rec = r.rec ) )
Whe I retrieve the datawindow I recieve the following error:
SELECT ERROR: SQLSTATE = 37000
[Microsoft][ODBC SQL Server Driver]Sintax Error or access infraction.
How can I fix this?
Thanks,
JA
Jim O'Neil
Principal Technical Support Engineer
Sybase, Inc.
Concord, MA
I don't know who is at fault, Microsoft or PowerBuilder, but one
workaround is to set DisableBind = 1 in your sqlca.dbparm.
On Wed, 9 Jul 2003 13:11:14 -0400, JEY_AR wrote: