上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页
摘要: public class ExcelOledbHelper { private readonly string connectionStr; /// <summary> /// /// </summary> /// <param name="pathOfExcel">path of Excel, e 阅读全文
posted @ 2020-05-24 22:31 yzhyingcool 阅读(278) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 调用GP工具对两个要素类做相交处理 /// </summary> /// <param name="featureClass1">优先级为1的要素类</param> /// <param name="featureClass2">优先级为2的要素类</param> 阅读全文
posted @ 2020-05-17 20:31 yzhyingcool 阅读(662) 评论(0) 推荐(0) 编辑
摘要: 1 public class SqliteHelper 2 { 3 private readonly string connectionStr; 4 public SqliteHelper(string dbPath) 5 { 6 if (System.IO.File.Exists(dbPath)) 阅读全文
posted @ 2020-05-09 17:58 yzhyingcool 阅读(1047) 评论(0) 推荐(0) 编辑
摘要: C#写Sqlite,sqlite库从nuget获得,下载System.Data.SQLite。 连接数据库报错如下: 翻了好多博客说是C++库的问题,控制面板瞅瞅库也不少啊,试了一些也不成功。 最终把随System.Data.SQLite 一起下载的 SQLite.Interop.dll 复制到与启 阅读全文
posted @ 2020-05-07 21:29 yzhyingcool 阅读(4655) 评论(0) 推荐(0) 编辑
摘要: 八百年不用的东西老是忘。 添加注释 plsq直接整 comment on table 表名 is '注释'; comment on column 表名.字段名 is '注释'; 查看注释 表右键→view,在General看表注释 在Column看字段注释 导出ddl Tools→Export Us 阅读全文
posted @ 2020-05-06 15:44 yzhyingcool 阅读(1044) 评论(0) 推荐(0) 编辑
摘要: 俺特地去找了个中文版的去截了帮助的图,太不容易了。 关于字符串的部分匹配查询,可以使用下面的两种基本方式: 注:该截图取自ArcMap“定义查询”工具窗口的SQL帮助。 LIKE 1、在GDB中,如下图使用 "test" LIKE 'D%' 匹配字段中的“D”,匹配成功。 2、在MDB中,使用通配符 阅读全文
posted @ 2020-04-26 18:03 yzhyingcool 阅读(1110) 评论(2) 推荐(0) 编辑
摘要: import arcpy fcs=arcpy.GetParameterAsText(0).split(';') for fc in fcs: fld_name_list= [i.name for i in arcpy.ListFields(fc)] try: if 'NAME' in fld_nam 阅读全文
posted @ 2020-04-02 20:27 yzhyingcool 阅读(1654) 评论(0) 推荐(0) 编辑
摘要: 受邀研究了一下arcpy生成界址点成果表,如有需要定制工具或源码可以联系作者。 2020年11月补充 实现了一个新的模板,详见ArcGIS生成界址点成果表Excel的主要实现方法(arcpy) - 知乎 (zhihu.com) 以下是原文 工具与结果如下: 主要实现方式 1.通过getPointLi 阅读全文
posted @ 2020-03-29 22:29 yzhyingcool 阅读(3224) 评论(2) 推荐(0) 编辑
摘要: 安装 python2.7 对应django1.11 使用镜像源加快下载速度,安装成功。 pip install django==1.11 -i https://pypi.doubanio.com/simple/ 查看安装是否成功。 python -m django --version 添加环境变量到 阅读全文
posted @ 2020-03-12 21:40 yzhyingcool 阅读(306) 评论(0) 推荐(0) 编辑
摘要: with arcpy.da.UpdateCursor(in_table=in_table,field_names=in_field,) as cursor: for row in cursor: guid=str(uuid.uuid1()).upper() if is_upper else str( 阅读全文
posted @ 2020-03-10 16:38 yzhyingcool 阅读(1480) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页