I have two forms with all fields in a repeating section. They are going to be filled out on a disconnected tablet PC, and submitted to an Access database upon return to the office. I have been able to merge all of the xml files for the first form together and submit them to the database. That worked fine. The problem I'm having is with the second form. There are three fields that make up the key for that table, and one of those fields is allowed to be an empty string. The problem is that when I try to submit a form with that field empty, it is being interpreted as a NULL value instead of an empty string. In the xml file, the field shows like this:
BldgCode=""
To me, that is an empty string, but apparently it doesn't get interpreted that way when it is submitted to the database. How can I get it to submit as an empty string?
- Kris