Hi. I haven't tried this in a while but I'll ask here to be sure...
Right now my database allows NULL values in strings. I do not want this to be the case. I would rather force a blank space into an empty field to avoid all the problems with NULL comparisons, etc. I had originally set up the database columns to avoid NULLs but then if I left a field blank the ASPRUnner pages would try to pass a NULL value in during the insert.
I first tried to work around this by using the event scripting. I would test for NULL (or length of string = 0). If the length was zero, I reassigned a " " to the dictionary item.
But, it seems that all of the entries get trimmed before being written to the database, so I ended up with the NULLs again.
Is there a way to work around this? My system is starting to get more use and I really want to get rid of all the NULLs.
THanks for any assistance.