Use The Forum

July 18, 2005 by Jeremy Conn
Matthew...

For troubleshooting help like this, you need to use the 'Forum'...

Same problem

September 21, 2006 by Bachir El Charif

Hi...
I have the same problem and i was trying to know more about it, and i found this:

First, this problem occure when i use a recordset object but if i insert the data with a simple sql with the conn.execute function evreything run normaly, but i have to use the recordset because the entry may content special charecter and i can't create a new function to replace all the special charecter because i don't know them all, (and its a stupid methode).

the second thing i noticed that all fields in an access database run perfectly except the memo type filed it remain empty, example:

i have a table users in access with 2 fields, the first one its type is text and the second is memo.
and i added new record to the table using recordset method:

rs1.addnew
rs1("textField") = upload.form("alo")
rs1("memoField") = upload.form("how")
rs1.update

the result will be:
the text field will optain the new data
but the memo field will remain empty

can any one help???

 

Thanks in advance