0
Platform: visual Studio 2010
Language: C#
Framework: .NET 4.0
Project: Windows Form

因此,我无法检索数据,但我已经连接。我也尝试使用'Server Explorer'进行连接,它可以毫无问题地正确连接和检索数据。

“服务器资源管理器”上的设置

Connection String: Driver={SQL Anywhere 11};userid=*****;servername=*****;autostop=YES;integrated=NO;filedsn=C:\*****\*****.db.dsn;commlinks='SharedMemory,TCPIP{host=}';compress=NO

Provider: `.NET Framework Data Provider for ODBC`

现在,在我的源代码中,我使用的是 System.Data.Odbc;

Code:

String connString = @"Driver={SQL Anywhere 11};userid=*****;servername=gamca;autostop=YES;integrated=NO;filedsn=C:\*****\*****.db.dsn;debug=NO;disablemultirowfetch=NO;commlinks='SharedMemory,TCPIP{host=}';compress=NO;password=*****";
OdbcConnection myConnection = new OdbcConnection(connString);
commandString = "DELETE from AGENCY";
try {
   using (OdbcCommand cmd = new OdbcCommand(commandString, myConnection)) {
   myConnection.Open();
   cmd.ExecuteNonQuery();
   myConnection.Close();
}

错误:Error [42S02] [Sybase][ODBC Driver][SQL Anywhere]Table 'AGENCY' not found

我也尝试过使用 OleDb 和 iAnywhere.Data.SQLAnywhere (V2),但没有运气,我无法通过这个错误。

有人遇到过同样的问题吗?

任何意见表示赞赏,谢谢..

4

1 回答 1

0

This Query runs on Default database (e.g. Master) Add database name to your ConnString or CommandString as follow:

commandString = "USE MyDatabase DELETE from AGENCY";

Dont forget to replace MyDatabase with your Database name.

于 2012-10-03T06:33:53.730 回答