does anyone get me a demo by uniquery.sqldelete?
Posted: Tue 11 May 2010 07:52
I read the documents but didn't understand how to use it.
Discussion forums for open issues and questions concerning database tools, data access components and developer tools from Devart
https://forums.devart.com/
Code: Select all
CREATE TABLE MY_TEST_TABLE (
ID NUMBER,
NAME VARCHAR2(50),
VALUE NUMBER(15,10)
)
Code: Select all
UniQuery1.SQL.Text := 'select * from MY_TEST_TABLE';
Code: Select all
UniQuery1.SQLDelete.Text := 'delete from MY_TEST_TABLE where ID = :Old_ID';
Code: Select all
UniQuery1.SQLDelete.Text := 'delete from MY_TEST_TABLE where NAME = :Old_NAME';