08 2011 档案
ArcEngine读取数据(数据访问)-转载
摘要:原文地址:读取和访问数据是进行任何复杂的空间分析及空间可视化表达的前提,ArcGIS支持的数据格式比较丰富,下面就这些格式Shapefile、Coverage、Personal Geodatabase、Enterprise Geodatabase、Tin、Raster、CAD、RDBMS等类型。一 ShapefileShapefile是ESRI提供的一种无拓扑信息的矢量数据格式,一个 Shape file由一组文件组成,其中必要的基本文件包括坐标文件(主文件)(*.shp )、索引文件(*.shx )和属性文件(*.dbf )三个文件。主文件每个记录描述构成一个地理特征(Feature)的所有 阅读全文
posted @ 2011-08-29 11:52 hl3292 阅读(3199) 评论(1) 推荐(0)
textsymbol,label
摘要:graphic graphicsPointText = new graphic();graphicsPointText.Geometry = mapPoint; TextSymbol graphicsPointTextSym = new TextSymbol { FontFamily = new FontFamily("微软雅黑, 宋体"), FontSize = 12, Foreground = new SolidColorBrush(Colors.Blue), Text = numFlag.ToString().Trim() }; graphicsPointText.S 阅读全文
posted @ 2011-08-19 17:01 hl3292 阅读(1756) 评论(0) 推荐(0)
C#三种定时器的实现-转载
摘要:http://blog.csdn.net/holyrong/archive/2007/09/20/1792357.aspx·关于C#中timer类 在C#里关于定时器类就有3个1.定义在System.Windows.Forms里2.定义在System.Threading.Timer类里3.定义在System.Timers.Timer类里System.Windows.Forms.Timer是应用于WinForm中的,它是通过Windows消息机制实现的,类似于VB或Delphi中的Timer控件,内部使用API SetTimer实现的。它的主要缺点是计时不精确,而且必须有消息循环,Co 阅读全文
posted @ 2011-08-12 09:50 hl3292 阅读(641) 评论(0) 推荐(0)
Oracle PL/SQL练习题总目录 -hl3292
摘要:原文地址:http://hi.baidu.com/xydba/blog/item/94152821e96520114d088d5c.htmlOracle PL/SQL练习题总目录2010-11-17 13:41第一章:Oracle概述(安装及常见对象)书面作业1、Oracle实例和数据库的概念和关系是什么?2、SGA的各个组成部分的名称和作用,PGA与它有什么区别?3、数据库的逻辑结构是什么?4、视图是什么,有什么作用?5、为什么要用同义词,与视图有什么区别?6、为什么要用,序列在Oracle中通常有什么用?7、dual是什么表,有什么作用?8、scott是什么,有什么用?9、谈谈对Oracl 阅读全文
posted @ 2011-08-07 15:40 hl3292 阅读(4648) 评论(0) 推荐(0)
非法的变量名和编号
摘要:sql oracle 一般是传参数是名称错了 阅读全文
posted @ 2011-08-06 15:28 hl3292 阅读(297) 评论(0) 推荐(0)
trunc
摘要:trunc 阅读全文
posted @ 2011-08-04 10:58 hl3292 阅读(163) 评论(0) 推荐(0)
silverlight数据绑定之DataGrid
摘要:http://blog.163.com/zwx_gis/blog/static/32434435201132382957968/注:所有代码以C#为例DataGrid绑定的数据对象:1、DataGrid的ItemsSource数据必须是对象List2、DataGrid Column的Binding必须是对象的属性一、最基本的DataGrid绑定1、前台<sdk:DataGrid AutoGenerateColumns="True" Height="238" HorizontalAlignment="Left" Margin=&q 阅读全文
posted @ 2011-08-03 16:08 hl3292 阅读(601) 评论(0) 推荐(0)
datatable
摘要:datatable 阅读全文
posted @ 2011-08-03 15:01 hl3292 阅读(180) 评论(0) 推荐(0)
sql 记录
摘要:select '总排量' as pollutantName, SUM(w.CORRECT_EMITOUT_VALUE), '0' AS totalEV from D_WATER_EMITION_HOUR_DATA wwhere w.sample_time between to_date('2011-05-24 00:00:00', 'YYYY-MM-DD HH24:MI:SS') and sysdate and w.pollution_code = '34010000000232'--group by w.poll 阅读全文
posted @ 2011-08-03 10:11 hl3292 阅读(141) 评论(0) 推荐(0)
访问dictionary的key
摘要:dic.Keys.ElementAt(0); 阅读全文
posted @ 2011-08-02 10:52 hl3292 阅读(170) 评论(0) 推荐(0)