M
Mettá
In the good old days these worked within a custom DRW
DELETE DISTINCT from tTable
WHERE ID=::ID:: and fieldx='::fieldx::'
UPDATE tTable
Set
add1='::add1::',add2='::add2::',from1=#::from1::#,to1=#::to1::#,approve='::approve::'
WHERE ID=::ID:: and fieldx='::fieldx::'
ID is record id and fieldx is a text field, I know I could use just ID but
for added protection I always add another field to an update or delete
query.
I have a feeling that the updates to FP and IIS etc from MS which have
caused all sorts of database problems are the cause, but can someone tell me
how to get update and delete queries to work?
Thanks
M
DELETE DISTINCT from tTable
WHERE ID=::ID:: and fieldx='::fieldx::'
UPDATE tTable
Set
add1='::add1::',add2='::add2::',from1=#::from1::#,to1=#::to1::#,approve='::approve::'
WHERE ID=::ID:: and fieldx='::fieldx::'
ID is record id and fieldx is a text field, I know I could use just ID but
for added protection I always add another field to an update or delete
query.
I have a feeling that the updates to FP and IIS etc from MS which have
caused all sorts of database problems are the cause, but can someone tell me
how to get update and delete queries to work?
Thanks
M