Hi,
We are using Access_JDBC30.jar library to generate the MS Access files through Java.
We are using bulk insert operations to insert the data into the Access database table. The number of columns in the database table is around 240 and the number of records are 1.5 lac.
While doing the bulk insert, the driver inserts some 10,000 rows and after that gives the following exception.
java.sql.SQLException: There isn't enough space for inserting new row at Access data page 5228
Could you please tell me what can be the reason behind that and what can be the possible resolution.
Following is the code segment we are using to insert the records:
String insertTableStr = "INSERT INTO "+ tableName +" ?;";
PreparedStatement stmt = con.prepareStatement(insertTableStr);
stmt.setObject(1,reportData);
recordCount = stmt.executeUpdate();
stmt.close();
Please let me know in case you need any further information.
|