Hi All!
I'm trying to create an Update Gui for my Access database.
I create a insert GUi successfull, but I failed to convert it for Updating.
my updating code is full of errors, so i decided to post my Select
code, it is properly working. Please help me to create and Updating GUI.
in UPDATE statement WHERE clause should be equal to SVID
should be something like this
UPDATE Main
SET Family=(Family)
SET Genus=(Genus)
SET Species=(Species)
WHERE SVID=(SVID);
Updated values should pass from UpdateGui.java file.
UpdateGui.java
UpdateCode.java (Here is my Select query, please help to use it for Updating)
Please kindly help me, I'm new to
Java and SQL.