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...
[257 byte] By [codeit@717a] at [2007-11-26 16:04:35]
# 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.%
duffymoa at 2007-7-8 22:26:33 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2
hey thanks ........
codeit@717a at 2007-7-8 22:26:33 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...