Inserting Rows into Access
Hi,
I have done a search but i could not understand anything but:-
Statement s = con.createStatement();
s.execute("insert into BOOKS (BookID) values(1)");
But i have a lot of fileds in my db so i would prefer to use the result set to insert rows in to db. But i dont excatly know how to?
Can you please help me!!!

