
Download overlord anime. Download Link for SQL Anywhere 17 Posted on Sep 30, 2015 at 08:07 AM 2.6k Views. Answers Include Comments Get RSS Feed. To define an SQL Anywhere data source for the SQL Anywhere driver: Select Create ODBC Data Source from the list of ODBC utilities in the Database Profiles dialog box or the Database painter. Select User Data Source and click Next. On the Create New Data Source page, select the SQL Anywhere driver and click Finish. If you connect to SQL Anywhere from SQL Server, you can create a linked server in SQL Server to access the SQL Anywhere database. The basic steps are as follows: 1. Download the appropriate ODBC driver for SQL Anywhere from Sybase website and install the driver. Select the driver you have installed to set up a data source in ODBC Data Source Administrator. Configure the ODBC driver with required information. These settings are also applicable for Sybase 11 (Met/Cal – Met/Track 7.3 and greater). For Sybase 11 the Driver is called SQL Anywhere 11. To open the ODBC administrator click 'Start', then in the search box at the bottom of the window type 'ODBC'. Then select 'ODBC Administrator'. Try this link to get connection string for Sybase.NET provider, I also posted a link to detailed configuration of Microsoft ODBC driver in this other databases forum it may help you.
Jun 03, 2005 10:17 PMterrencetedLINK
How to connect to Sybase SQL Anywhere 5.0 in C# ( ASP.net )?
Below are my connectionstrings, all of the didn't work correctly:-
1. string myConnString =
'DSN=sqlbase;UID=******;PWD=*****;DatabaseFile=c:SQLSQLBase.DB;';
Error : ERROR [08001] [Sybase][ODBC Driver]Unable to connect to database server: unable to start database engine ERROR [01S00] [Sybase][ODBC Driver]Invalid connection string attribute ERROR [01S00] [Sybase][ODBC Driver]Invalid connection string attribute ERROR [01000] [Microsoft][ODBC Driver Manager] The driver doesn't support the version of ODBC behavior that the application requested (see SQLSetEnvAttr)
2. string myConnString =
'ODBC; Driver=Sybase SQL Anywhere 5.0;' + 'DefaultDir=c:dbpath;' + 'Dbf=c:SQLSQLBase.DB;' + 'Uid=test;' + 'Pwd=test;' + 'Dsn='+'';
Error:System.Data.Odbc.OdbcException: ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
3.string myConnString =
'ODBC; Driver={Sybase SQL Anywhere 5.0};' + 'DefaultDir=c:dbpath;' + 'Dbf=c:SQLSQLBase.DB;' + 'Uid=test;' + 'Pwd=test;' + 'Dsn=sqlbase';
Error : ERROR [08001] [Sybase][ODBC Driver]Unable to connect to database server: unable to start database engine ERROR [01S00] [Sybase][ODBC Driver]Invalid connection string attribute ERROR [01S00] [Sybase][ODBC Driver]Invalid connection string attribute ERROR [01000] [Microsoft][ODBC Driver Manager] The driver doesn't support the version of ODBC behavior that the application requested (see SQLSetEnvAttr).
I would appreciate if someone can pinpoint my error or provide a working connectionstring.
Thanks so much.