tags:

views:

121

answers:

1

Does anyone know of any documentation out there that lays out what SQL functions are supported for the .NET Microsoft.Jet.OLEDB.4.0 provider when querying a text file?

For instance, the TRIM() function. However, there doesn't appear to be a CASE function like in SQL Server.

+1  A: 

I don't know of any such reference. But see if using IIF helps.

shahkalpesh
IIF does work in place of CASE. Thanks
Jeff Stock