从Windows Mobile连接到SQL Server数据库时出现SQLException

时间:2018-05-25 09:02:04

标签: sql-server windows-mobile-6.5

我正在尝试为移动设备开发应用程序。我尝试过一个简单的代码来打开与数据库的连接(一个SQL Server)并读取一个表。

但是,在Open命令中,它会抛出一个没有消息的SQLException。以下是模拟器的一些屏幕截图:

enter image description here

按“Prueba”,我显示连接字符串,所以我可以检查数据。

enter image description here

然后,问题:

enter image description here

(“SQLException”与Exception对象的“Message”属性一起显示)

这是代码

try {
  string conexion = Recepcion_compras.Properties.Resources.conexion;                
  SqlConnection con = new SqlConnection(conexion);
  MessageBox.Show(con.ConnectionString);
  con.Open();
} catch(Exception ex) {
  MessageBox.Show("ERROR: " + ex.Message);
}

连接数据正确且已启用TCP / IP连接。

可能是什么错误?

提前感谢

1 个答案:

答案 0 :(得分:1)

好的,我自己回答。

仿真器配置-_-

上未启用网络