tags:

views:

160

answers:

0

I have a project in ASP.NET that connects to an Oracle database.

One of the page uses a series of table adapters to perform simple scalar lookups. The same dataset with the scalar lookups also has some table adapters that fill datasets.

The datasets fill fine on both the production server(Server 2003) and my local development machine, however, the adapters that are just pulling scalar values are tossing the error:

Keyword not supported: 'unicode'.

On the production server only. It works fine from my local machine and they're both connecting to the same database. The connection strings of both the scalar adapters and the table adapters are the same, so I can't see how it would be a connection string issue.

Does anyone know why this would happen? Is it possible I have an older Oracle client on the server that doesn't handle scalar queries?

Thanks