i'm not too familiar with java...though...
actually i'm trying to insert the values entered by the user into the access table but every time i click the add button on my application it shows java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement.
error...
String str="insert into books(ISBN,Title,Edition,Category,Author,Desc) values('";
str+=isbnField.getText();
str+="','";
str+=titleField.getText();
str+="','";
str+=editionField.getText();
str+="','";
str+=categoryField.getText();
str+="','";
str+=authorField.getText();
str+="','";
str+=descArea.getText();
str+="')";
try
{
stmt11.execute(str);
}catch(Exception ea1)
{ea1.printStackTrace();}
would be a great help.....:)