vote up 0 vote down star

OleDbDataAdapter internal error: invalid row set accessor: Ordinal=6 Status=UNSUPPORTEDCONVERSION

All I'm doing is trying to do a simple select statement. The field in ordinal 6 is an NTEXT field. Are they telling me I can't use NTEXT fields in my database with OleDb providers? Is there any workaround here?

flag

60% accept rate
You're using both c# and sql server compact - why not use the sqlce namespace/provider? – Joel Coehoorn Aug 20 at 16:28
We are actually trying to support multiple database types, being SQL Server 2005, SQL Server CE, and Microsoft Access. The underlying datalayer would require a massive rewrite to be able to use the SqlCeConnection object. We have many reader.HasRows calls within the data layer which doesn't work under SqlCe namespace but does under the OleDb one. – Tom Aug 20 at 17:22

1 Answer

vote up 1 vote down check

Yes, your supposition is correct. NTEXT is no longer supported in string functions for the latest .NET tools. I'd suggest, since you're using SQL 2005, to change the column type in the database to NVARCHAR.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.