Is it possible to store the form data all in a single record instead of each line item on it's own record?
Key, First, Last, Address, City, ..
1, Fred, Flintstone, 2020 Rocky Way, Bedrock ..
Instead of the way it (appears to do it)
Key, ID, item, content
1, 1, first, Fred
2, 1, last, Flintstone
3, 1, address, 2020 Rocky Way
4, 1, city, Bedrock
The former is a whole lot easier to work with other database front ends, to move data in and out, etc.