adding to MS Access DataBase
hello,I have to connect to Ms access DB and insert values .connection is done .when i insert values from an array, i have used a for loop for this .But it never enters my last value in array....how to solve this problem...
# 1
you aren't closing your resources - connection, statement, etc. in a finally block. the driver commits the previous row when you insert the next one, but the last one isn't committed until the connection is closed.%