i am using jdbc with microsoft access database...it works fine with select query (showing all the data in db)..but the insert query is not working...even not prompting any error....the data could not enter the database..the code is as follows :
It's a common problem with the jdbc-odbc bridge. the best solution is to use a better database such as MySQL or ever Hypersonic, but a short solution is to either set autoCommit(true) on the Connection or perform a dummy select after the insert.