摘要: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.d 阅读全文
posted @ 2020-08-20 22:37 Jason's_Blog 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 背景 在ArcGIS 中无论是拓扑、shapefile文件、还是个人地理数据库都是设置有容差的,小于这个容差的自相交,都是无法检测到的。 解决办法 1. 通过postGIS导入工具导入shp, 并将多换设置为单环 2. 通过postGIS修复无效图形 update temp1 set geom =S 阅读全文
posted @ 2020-08-11 11:40 Jason's_Blog 阅读(1413) 评论(0) 推荐(0) 编辑
摘要: 一、OGC标准函数 1.管理函数 --添加几何字段 AddGeometryColumn(, , , , , ) --删除几何字段 DropGeometryColumn(, , ) --检查数据库几何字段并在geometry_columns中归档 Probe_Geometry_Columns() -- 阅读全文
posted @ 2020-08-11 11:21 Jason's_Blog 阅读(1680) 评论(0) 推荐(0) 编辑
摘要: 1 using System.Threading; 2 using System.Collections.Generic; 3 using GeoAPI.Geometries; 4 using NetTopologySuite.Geometries; 5 using NetTopologySuite 阅读全文
posted @ 2020-08-10 17:15 Jason's_Blog 阅读(2454) 评论(0) 推荐(0) 编辑
摘要: 1 using OSGeo.GDAL; 2 using OSGeo.OGR; 3 using System; 4 using System.Collections.Generic; 5 using System.IO; 6 using System.Runtime.Serialization.Jso 阅读全文
posted @ 2020-08-10 17:13 Jason's_Blog 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 安装Node 官网:https://nodejs.org/zh-cn/ 安装是否成功: node-v npm-v Vue脚手架安装 npm install -g @vue/cli 安装是否成功:vue -V npm unistall vue-cli -g 卸载, 安装高版本需要先卸载低版本 脚手架构 阅读全文
posted @ 2020-07-29 22:50 Jason's_Blog 阅读(86) 评论(0) 推荐(0) 编辑
摘要: -- 创建用户 CREATE USER thirdqueryuser WITH PASSWORD 'thirduser@#123.'; --赋予登录权限 grant connect on database hncyjjq to thirdqueryuser; --系统表权限清空:防止用户登录上去就能 阅读全文
posted @ 2020-07-29 14:48 Jason's_Blog 阅读(2878) 评论(0) 推荐(0) 编辑
摘要: 安装vuex npm install vuex --save 介绍 state 存储单一状态, 是存储的基本数据 getters 是 store 的计算属性, 对 state 加工, 是派生出来的数据, 就像计算属性一样,getters 返回的值会根据他的依赖缓存欺来, 且只有当他的依赖值发生改变的 阅读全文
posted @ 2020-07-26 23:06 Jason's_Blog 阅读(197) 评论(0) 推荐(0) 编辑
摘要: Delete 删除行级数据,删除前会锁定行级 删除操作会作为事务记录在日志中 Truncate 执行后,表的索引占用空间会恢复初始大小 不会触发触发器执行 速度快,效率高 不允许回滚 阅读全文
posted @ 2020-06-01 22:42 Jason's_Blog 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1. 何为连接池 在应用程序中,建立一次数据库连接是一件很耗时的事情,ADO.Net提供了连接池的容器,存放了一定数量和数据库服务器的物理连接。当连接数据库的时候,会从连接池中取,而不是每次创建,以达到提高性能的办法。 2. 创建连接池 同一个时刻、同一个应用程序存在不同类型连接池。通过进程、应用程 阅读全文
posted @ 2020-06-01 22:34 Jason's_Blog 阅读(847) 评论(0) 推荐(0) 编辑