物探论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 489|回复: 0

MapXtreme2004代码 读取TAB表中的元素

[复制链接]
发表于 2013-3-13 20:52:38 | 显示全部楼层 |阅读模式
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();

}

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|物探论坛 ( 鄂ICP备12002012号 微信号:iwutan )

GMT+8, 2024-5-13 10:23 , Processed in 0.071166 second(s), 15 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表