zoukankan      html  css  js  c++  java
  • 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();
    }

  • 相关阅读:
    IDT 信息设计工具使用
    子查询
    分组函数
    多表查询
    单行函数
    基本的sql-select语句
    final关键字的使用
    非静态代码块(非static初始化块)&静态代码块(static初始化块)
    单例模式的饿汉式实现
    static关键字的应用
  • 原文地址:https://www.cnblogs.com/googlegis/p/2978967.html
Copyright © 2011-2022 走看看