I am using DBRequestManager to send data from a SQLite database on my tablet to a SQL Server on a Windows server. My code is failing with this error:
java.sql.SQLException: Conversion failed when converting from a character string to uniqueidentifier.
The error occurs when I try to send a Null value to a uniqueidentifier field that is set to allow nulls.
This should work, shouldn't it? Or do I need to do something special with Nulls in order to pass them?
java.sql.SQLException: Conversion failed when converting from a character string to uniqueidentifier.
The error occurs when I try to send a Null value to a uniqueidentifier field that is set to allow nulls.
This should work, shouldn't it? Or do I need to do something special with Nulls in order to pass them?