上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页

2016年8月3日

摘要: oracle下,利用dual表创建 with ct (id) as ( select 1 as id from dual union all select id+1 from ct where id <100 ) select id from ct 或者用临时表循环插入 或者用现有的物理表的rown 阅读全文

posted @ 2016-08-03 14:04 云起 阅读(1) 评论(0) 推荐(0) 编辑


2016年7月22日

摘要: private void createIndex(int width,int height,string savePath){ IFeatureLayer featLayer = axMapControl1.get_Layer(0) as IFeatureLayer; List<IField> li 阅读全文

posted @ 2016-07-22 16:24 云起 阅读(1) 评论(0) 推荐(0) 编辑


2016年7月14日

摘要: 错误代码 错误描述 错误名称 HRESULT:0x80040201 “Failed to load a resource (string, icon, bitmap, etc).” LOADING_RESOURCE HRESULT:0x80040202 The index passed was no 阅读全文

posted @ 2016-07-14 15:00 云起 阅读(41) 评论(0) 推荐(0) 编辑


2016年4月28日

摘要: QueryFilter有一个SubFields属性和一个AddField方法。 对于SubFields属性是这样描述的。The comma delimited list of field names for the filter。 对于AddField方法是这样描述的。Appends a singl 阅读全文

posted @ 2016-04-28 17:23 云起 阅读(3) 评论(0) 推荐(0) 编辑


2016年4月15日

摘要: 在使用图层过程中,往往希望设定一个可见比例尺范围。设置这个的作用,一来是显得数据有逻辑性,二来能减小图层重新绘制的负担。 最小比例尺的作用,是缩小地图范围超过指定值,图层则不进行显示;最大比例尺的作用,是放大地图范围超过指定值,图层则不进行显示。区分的时候,分母较大的,为最小比例尺。 形象一点说,当 阅读全文

posted @ 2016-04-15 16:49 云起 阅读(8) 评论(0) 推荐(0) 编辑


2016年4月8日

摘要: 1.查看所有用户: select * from dba_users; select * from all_users; select * from user_users; 2.查看用户或角色系统权限(直接赋值给用户或角色的系统权限): select * from dba_sys_privs; sel 阅读全文

posted @ 2016-04-08 15:26 云起 阅读(2) 评论(0) 推荐(0) 编辑


2016年1月14日

摘要: /// <summary> /// 字符串相似度算法-编辑距离法 /// </summary> /// <param name="str1"></param> /// <param name="str2"></param> /// <returns>返回的值越大相似度越高</returns> pub 阅读全文

posted @ 2016-01-14 13:10 云起 阅读(1) 评论(0) 推荐(0) 编辑


2015年12月30日

摘要: 开始还是那句话,科普贴,高手请绕过,欢迎提意见。 说道地图分幅,先要说说为什么要地图分幅。 有了地图之后,就会面临一个问题,随着地图表现的越详尽,所需要的幅面也就也大,所需要的承载体也越大。拿纸张介质来说,一张全国的1:1w的全图,就已经大得“铺天盖地”了。在以往采用仪器进行测量的时候,不光是携带起 阅读全文

posted @ 2015-12-30 12:45 云起 阅读(8) 评论(0) 推荐(0) 编辑


2015年11月26日

摘要: Arc/Info Export (E00) Format Analysis Original Author: Unknown Last Update: 2000-02-24, Daniel Morissette, danmo@videotron.ca This is an updated versi 阅读全文

posted @ 2015-11-26 10:49 云起 阅读(1) 评论(0) 推荐(0) 编辑


2015年11月25日

摘要: /// <summary> /// Http下载文件 /// </summary> public static string HttpDownloadFile(string url, string path) { // 设置参数 HttpWebRequest request = WebRequest 阅读全文

posted @ 2015-11-25 17:15 云起 阅读(2) 评论(0) 推荐(0) 编辑


上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页

Copyright © 2024 云起
Powered by .NET 8.0 on Kubernetes