RE: Navision ODBC.NET



You should search the internet for Navision, perhaps you can find a
solution there.

I'm not sure what you are looking for in 'metadata tramsit', but your
applicaiton can choose either 2.0 or 3.0 behavior by setting the ODBC
Environment attribute approriately:

SQLSetEnvAttr(henv, SQL_ATTR_ODBC_VERSION, SQL_OV_ODBC2, SQL_IS_INTEGER)

-- or --

SQLSetEnvAttr(henv, SQL_ATTR_ODBC_VERSION, SQL_OV_ODBC3, SQL_IS_INTEGER)

.


Loading