2014年12月17日
摘要:
正向写法:string filter = "code like '%"+sheetname+"%'";filter值为:code like '%表F.3_1%'反向写法:stringfilter= "'" + sheetname + "' like '%'+ code+'%'";filter值为: ...
阅读全文
posted @ 2014-12-17 15:36
janehlp
阅读(570)
推荐(0)
2014年12月10日
摘要:
IRelationalOperator 接口: 1. Provides access to members that determine if a certain spatial relationship exists between two geometries. Members Descript
阅读全文
posted @ 2014-12-10 12:31
janehlp
阅读(3070)
推荐(0)
摘要:
ISpatialFilter.SpatialRel设置为esriSpatialRelRelate,并且设置SpatialRelDescription为某个字符串。该字符串的构造方法:该字符串为长度为9, “*********”;每一个“*“可以换为”T“或”F“,T表示True,F表示False。具
阅读全文
posted @ 2014-12-10 11:12
janehlp
阅读(866)
推荐(0)
2014年12月7日
摘要:
SDE_column_registry 表管理所有注册列。 警告:如果使用 SQL 界面更改列定义,SDE_column_registry 表中的记录将不会更新。这可能导致之后的任何数据导出失败。 SQL Server数据类型与sde_type对照表: SQLServer类型 sde_type co
阅读全文
posted @ 2014-12-07 16:37
janehlp
阅读(737)
推荐(0)
2014年12月6日
摘要:
arcgis10:ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);arcgis9.3:在窗体上放置license控件就行。private ESRI.ArcGIS.Controls.AxLicenseCo...
阅读全文
posted @ 2014-12-06 14:33
janehlp
阅读(465)
推荐(0)
2014年11月26日
posted @ 2014-11-26 21:16
janehlp
阅读(398)
推荐(0)
2014年10月29日
摘要:
SpatiaLite 生成的数据库,3.0版本与4.0版本的表geometry_columns结构发生变化。这是3.0版本的结构:这是4.0版本的结构:主要差别是type和coord_dimension。
阅读全文
posted @ 2014-10-29 16:27
janehlp
阅读(269)
推荐(0)
2014年8月19日
摘要:
java类字符串变量如果含有以下2种字符:&和 大于号& & 和' ’单引号" " 双引号注意: 只有"=0){ escaped = escaped.replace("&", "&"); } else if(escaped...
阅读全文
posted @ 2014-08-19 16:33
janehlp
阅读(455)
推荐(0)
2014年8月5日
摘要:
ActiveXComponent app = new ActiveXComponent("Word.Application"); //启动word String inFile = "C:\\TEMP\\test.doc";app.setProperty("Visible", new...
阅读全文
posted @ 2014-08-05 16:56
janehlp
阅读(1316)
推荐(0)
2014年7月23日
摘要:
表字段为G_XIAN,生成PO对象时为private String GXian;datagrid字段必须写为gXian,否则数据无法正确绑定。总结:不管VO对象中字段名称首字母是否大写,在datagrid中首字母必须写成小写,其它字段不变。
阅读全文
posted @ 2014-07-23 20:55
janehlp
阅读(285)
推荐(1)