摘要:
listView1.Items.Clear();string Connstr = "Server=172.*.*.150;database=pubs;uid=sa;pwd=sa;";SqlConnection Conn = new SqlConnection(Connstr);SqlCommand Com = new SqlCommand(); try { Conn.Open(); //Messa... 阅读全文
摘要:
测试成功的连接字符串写法:string strConnectionString= @"server=IP,端口;database=ChildrenERecord;Uid=child;Pwd=child";对于以上字符串有以下说明:1、“server=IP,端口”之间是英文状态下的逗号,如果你写成中文状态下逗号,会在 cn.Open()时出现异常,且你死活找不到原因在哪里,本... 阅读全文
摘要:
在WindowsCE5.0或PocketPC2003或Sarthpone2003中,可以使用下面三种方法访问远程数据。 第一种: 使用WebService作为中介访问数据,在PDA中可以直接访问安装在访问器上的WebService,通过WebService就可以访问远程数据库了。了解WebService这种方法应该很简单。使用WebService可以在速度上会稍显得有点慢。 第二种: 直接... 阅读全文