首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Windows Mobile >

ppc下怎么连接dbf数据库

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

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())
{
//从源数据库表读取记录

热点排行