vote up 1 vote down star

MS Access appears to support nulls in code, but I can't for the life of me figure out how to enter a null directly in a table. This is maddening because once a field has had a figure entered in it, it can never be deleted/set to null. Normally, allowing zero length strings would take care of this, but Access treats the XML export of a null and a zero length string differently. A null eliminates the associated XML tag and a zero length string sends an empty tag.

flag

67% accept rate
How are you entering the data into the tables? I have run an XML export with data that I have entered using a table view, and it successfully adds and removes the column as you suggested. – Jason Lepack Dec 3 '08 at 14:18
Are you saying that you don't want to allow zero length strings? – Jason Lepack Dec 3 '08 at 14:24
There's no such thing as "directly in a table". You are probably referring to a form which is bound to a recordset, probably the one provided In the UI of whatever version of MS Access you are using. Or does 'directly' mean you are using SQL code? – onedaywhen Dec 5 '08 at 8:38
@onedaywhen, I was referring to those things that access calls "tables". Also, don't even bother going all tuple/relation on us when we're talking about MS Access. – anopres Aug 11 at 14:34

6 Answers

vote up 0 vote down

press ctrl-0 and a null is inserted.

link|flag
This does not work with Access 2007. How did you get this to work? – anopres Aug 11 at 14:25
vote up 0 vote down

Ok, I don't think this is an easily solvable problem and my original question was a little off target. The problem isn't so much with nulls, although they are involved, as with the manner in which the table was originally created. If you use an xsd file to create your tables you plan on exporting, something happens under the hood in Access that causes those fields to be treated a little differently than fields created with the editors.

The only solution I found was to create a new field in the table, rename the old field, copy the data from the old field to the new field and delete the old field.

After doing that, then blank fields that had data in them at one point are no longer included in the XML output. It's probably not the best way to do this, and I still don't know exactly why it's happening, but at least I can get past the issue.

link|flag
vote up 2 vote down

Does setting the "Allow zero length string" option in the table definition help? It may force an empty string to be interpreted as NULL.

link|flag
Not "may", but WILL. Unless you're using ZLS as a meaningful value that is distinct from Null, there is no reason for any field to allow the storage of ZLS's. It's certainly user unfriendly. – David W. Fenton Dec 5 '08 at 3:50
vote up 0 vote down

I'm actually looking for a way for a layperson to do the entry directly in a table. In MSSQL you can simply press ctrl-0 and a null is inserted. Deleting all the characters doesn't appear to work. Instead of a null, you are left with an empty string. They are not treated the same by Access for export purposes.

I think what I'm going to wind up doing is creating an xslt file to use during export that eliminates empty tags. That way the user can't really tell the difference.

It sure would be nice, though, to be able to key in a null.

link|flag
What version of Access are you using? As I mentioned in my comments on your original post, I have implemented the behaviour you are requesting. – Jason Lepack Dec 3 '08 at 14:55
I'm running Access 2007. – anopres Dec 3 '08 at 15:48
vote up -1 vote down

Just delete all characters in the column and access will insert a null value for you if the coumn allows it.

link|flag
1  
Not if the field is set to allow zero-length strings. – David W. Fenton Dec 5 '08 at 3:51
vote up 0 vote down

Are you talking about needing to do it in Datasheet view? If you needed to do it in an update query, you can do it like this:

UPDATE test SET test.test = Null;
link|flag
Yes, I was talking about doing it in the datasheet view. – anopres Dec 3 '08 at 14:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.