Yes u can insert into the MS ACCESSS 2000
pass the string into the
statement.executeQuery("insert into <table Name>(<field1,field2) values('String','String',Integer)>
look the followwing thing is a new thing which i found out
if u hav some value assinged to a variable like
String name = "amit";
and if u want to insert that variable then the syntax in the VALUES will be values('"+name+'",'"+name2+"')otherwise u will get an SQLException java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1.
ok then this might solve your query
bye.