Looking at an access database, there is a field that had ole object as its type. What is the equivalent of that in code? So:
Dim x as ????
rs.Fields("MyOLEObjectField") = x
Printable View
Looking at an access database, there is a field that had ole object as its type. What is the equivalent of that in code? So:
Dim x as ????
rs.Fields("MyOLEObjectField") = x
bump
I use an OLE Object field in my database to store binary data. I think it use to be called a BLOB (Binary Large Object). When I read and write to the OLE Object field I use a byte array.
Greg