G
Guest
this is what I'm trying to do:
myActionQuery = "UPDATE MyTable SET " & " Data = " & mData & " Where
ObjectID = " & mObjectID
where mData is an array of bytes
this is the error msg I'm getting:
Operator '&' is not defined for types 'String' and '1-dimensional array of
Byte'.
I'm using a reader to get the data....but now I need to update it... Using
dataset/datarow is not an option...
Any suggestions?
myActionQuery = "UPDATE MyTable SET " & " Data = " & mData & " Where
ObjectID = " & mObjectID
where mData is an array of bytes
this is the error msg I'm getting:
Operator '&' is not defined for types 'String' and '1-dimensional array of
Byte'.
I'm using a reader to get the data....but now I need to update it... Using
dataset/datarow is not an option...
Any suggestions?