MS access - clearing
Hi guys :D ,
I need a little advice,
I need to reset ALL the contect with in a Selected colloum in my access database
Database name is mutisavers.mdb
table name is table1
collum name is PoS_scan
Any adice or same code is MOST welcomed :)
Thanks in advance
Drew :WAVE:
[324 byte] By [
Drew_gable] at [2007-11-11 6:58:29]

# 1 Re: MS access - clearing
Assuming that PoS_scan contains Text data, you can do this:
UPDATE table1 SET PoS_scan = ""
or
UPDATE table1 SET PoS_scan = Null
# 3 Re: MS access - clearing
It is not working.
Am i doing something wrong
What i forgot to mention is i am using a vba program as my interface to the database (ado)
do i need to change the coding some how??
# 4 Re: MS access - clearing
I don't know. Please post your code and describe how it is "not working" (error messages, etc.)
# 5 Re: MS access - clearing
The code I am using is as follows
UPDATE table1 SET PoS_scan = "0"
I am not getting any error codes or anything do I need to link it to the data1 control unit before I run the command?