I am trying to do a simple select statement against a sql ce database.
One of the columns is of type ntext and I can't switch it to nvarchar because the data might be too big.
I am using oledb because sql ce isn't the only backend option (it could also be sql server or excel, and maybe more in the future).
When I run my select statement I receive the following error:
OleDbDataAdapter internal error: invalid row set accessor: Ordinal=2 Status=UNSUPPORTEDCONVERSION
Is there anything I can do aside from using the SqlServerCe namespace objects?
View Complete Post