My problem is about inserting a attachment data to my database in MS Access
Honestly the whole java ms access are so new to me.
So what I am trying is inserting a value to my database thru java.
im using this code
sql ="insert into FILES(File) values (' " + myFile + " ')";
statement.executeUpdate(sql);
myFile is my variable for my file object
It works fine when in other data type.