MapXtreme2004代码 读取TAB表中的元素

MapXtreme2004代码 读取TAB表中的元素


例如,用记事本打开要访问的TAB文件“农安.tab”,可以看到下面内容:

 

!table

!version 300

!charset WindowsSimpChinese

 

Definition Table

  Type NATIVE Charset "WindowsSimpChinese"

  Fields 2

    地理码 Char (10) Index 1 ;

名称 Char (10) ;

 

下面我们就来读取该表的所有“名称”元素。并将其加入到DropDownList控件中。

 

private static string _findLayerName = "农安";

private static string _findColumnName = "名称";

MapInfo.Data.Table table=MapInfo.Engine.Session.Current.Catalog.GetTable(_findLayerName);

 

if(table!=null)

{

     MIDataReader tr;

     MIConnection con=new MIConnection();

     MICommand tc=con.CreateCommand();

     tc.CommandText="select "+_findColumnName+" from "+_findLayerName;

     con.Open();

     tr=tc.ExecuteReader();

     while (tr.Read())

     {

         DropDownList1.Items.Add(tr.GetString(0));

     }

     tc.Cancel();

     tc.Dispose();

     tr.Close();

     con.Close();

}

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值