|
-
February 16th, 2000, 06:39 AM
#1
how to add a null string in a access database
hi,
i would like to know if we can assign a null string value (ie "") into a field of an access 97 or 2000 database ?
thank for your help
-
February 16th, 2000, 07:00 AM
#2
Re: how to add a null string in a access database
yes, you can.
if you use a recordset object:
rs.fields(fieldIndexOrNumber).Value = NULL
(assuming that your field is nullable in the table.
-
February 16th, 2000, 08:00 AM
#3
Re: how to add a null string in a access database
This wouldn't insert an empty string, though. The difference between NULL and an empty string is huge when you're running a query. I think the answer that's being looked for this time is:
rs(fieldIndexOrNumber) = vbNullString
-
February 16th, 2000, 05:02 PM
#4
Re: how to add a null string in a access database
cool, that's what i need, thanx
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|