读书人

ppc下怎么连接dbf数据库

发布时间: 2012-09-15 19:09:28 作者: rapoo

ppc上如何连接dbf数据库
请问大家在ppc上如何连接dbf数据库?如果能连接,能否举个连接dbf并且查询某个表的例子吗?

[解决办法]
string strConn="Server=192.168.1.102;DataBase=watdb;User ID=sa;Password=sa;Persist Security Info=True;";

string CmdString = "select floor,way,Error from PDState where ( id ='001')";
SqlCommand srcCommand = new SqlCommand(CmdString, conn);
SqlDataReader srcReader = srcCommand.ExecuteReader();
while (srcReader.Read())
{
//从源数据库表读取记录

读书人网 >Windows Mobile

热点推荐