Hi,
I'v got sort of a problem, i'm using an MS Access database combined with a delphi program. I use the Datasource and the adoquery compontents to connect with the database.
Now i'm used to work with SQL so i know all the commands and such, but as far as i know you can only use these command to get records from de database (adoquery.sql.add('SELECT * FROM Table'))
now i already made the insert work (NOT with an sql command, is that even possible) i used:
adoquery.insert;
adoquery.fieldname(name) := value;
adoquery.post;
but now i want to delete a record, or all the record.
i tried a lot of things, but nothing works, these things i tried and i think it should be any of these, tried more but don't think that's even possibile:
ADOQuery.Delete;// database is blocked or something
ADOQuery.Post;// not really sure i need this
ADOquery.DeleteRecords(); // this gives an error something like it's not in the right context, but i don't know the right one..
So anybody knows how i delete records from de database?
Thanx in advance.