I pull data from a sql db table which has two uniqueidentifier one which is key. One is customer_id and the other image_id (key).
customer_id may be the same as others in the table, but image_id will be new and unique data.
When I go to do an insert back into the db table and I get the following error:
Syntax error converting from a character string to uniqueidentifier
How do I pull the customer_id field from the table and keep it from converting into a string or how do I convert it back into a uniqueindentifier format so I can put it back into the table?
And
How do I format a new image_id to put into the table?
TIA
customer_id may be the same as others in the table, but image_id will be new and unique data.
When I go to do an insert back into the db table and I get the following error:
Syntax error converting from a character string to uniqueidentifier
How do I pull the customer_id field from the table and keep it from converting into a string or how do I convert it back into a uniqueindentifier format so I can put it back into the table?
And
How do I format a new image_id to put into the table?
TIA