健康一贴灵,专注医药行业管理信息化
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页
摘要: 一、使用官方安装脚本自动安装 安装命令如下: curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun 也可以使用国内 daocloud 一键安装命令: curl -sSL https://get.daocloud.io/d 阅读全文
posted @ 2022-11-18 10:58 一贴灵 阅读(46) 评论(0) 推荐(0) 编辑
摘要: private void button6_Click_3(object sender, EventArgs e) { string filename = AppDomain.CurrentDomain.BaseDirectory + "test.json"; try { FileStream fs 阅读全文
posted @ 2022-10-20 17:35 一贴灵 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 可使用终端查看当前安装的 .NET SDK 版本。 打开终端并运行以下命令。 dotnet--list-sdks 将获得类似于下面的输出 阅读全文
posted @ 2022-10-10 15:14 一贴灵 阅读(642) 评论(0) 推荐(0) 编辑
摘要: 一、站点版(一)、商业巨头的开源镜像站1.搜狐:http://mirrors.sohu.com/2.网易:http://mirrors.163.com/3.阿里云:http://mirrors.aliyun.com/4.腾讯:http://android-mirror.bugly.qq.com:80 阅读全文
posted @ 2022-09-22 21:19 一贴灵 阅读(94) 评论(0) 推荐(0) 编辑
摘要: { "job": { "content": [ { "reader": { "name": "sqlserverreader", "parameter": { "username": "****", "password": "****", "column": ["*"], "connection": 阅读全文
posted @ 2022-09-22 16:09 一贴灵 阅读(609) 评论(0) 推荐(0) 编辑
摘要: 使用前提:安装jdk1.8,python和maven 测试安装是否成功:python datax.py ../job/job.json 如果能正常执行,一切OK,如果结尾的中文是乱码,在CMD命令符下执行:CHCP 65001 然后回车,直到打开新窗口出现Active code page: 6500 阅读全文
posted @ 2022-09-22 14:33 一贴灵 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 针对数据量超过千万的表,更新时要分段处理,防止锁死数据库;此例 是每年12个月分开处理 CREATE OR REPLACE FUNCTION "public"."jcy_clean"() RETURNS "pg_catalog"."void" AS $BODY$ -- Routine body go 阅读全文
posted @ 2022-09-08 11:12 一贴灵 阅读(61) 评论(0) 推荐(0) 编辑
摘要: alter table 表名 alter 字段名 set not null; alter table log alter ip set not null; alter table 表名 alter 字段名 set default '' 或 0 阅读全文
posted @ 2022-09-06 15:22 一贴灵 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 之前一直用的mysql,这个也基本上是主流,主键自增是很多建表规范中的硬性要求,不过这两种数据库主键自增的区别还是很大的 通常navicat中对mysql 主键自增直接客户端指定即可,不过对PG貌似不支持客户端指定,所以需要执行一下sql 如果尚未创建表,可用如下方法 方法一: create tab 阅读全文
posted @ 2022-08-31 15:29 一贴灵 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 0判断服务状态 using System.ServiceProcess; // ServiceController sc; try { sc = new ServiceController(SERVICE_NAME); } catch(ArgumentException) { return "Inv 阅读全文
posted @ 2022-08-30 09:20 一贴灵 阅读(1687) 评论(0) 推荐(0) 编辑
摘要: 总结下,winform开发windows服务全过程 ;windows服务的代码中,不能有MessageBox.Show()等winform的控件引用 。可以使用写文本日志的方法调试; 1、添加服务引用,输入 webservice的地址,点转到,然后给引用的服务起个“命名空间”名字,之后会在“解决方案 阅读全文
posted @ 2022-08-22 16:24 一贴灵 阅读(599) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2022-08-15 16:17 一贴灵 阅读(510) 评论(0) 推荐(0) 编辑
摘要: 批处理命令获取当前盘符和当前目录 当前盘符:%~d0当前路径:%cd%当前执行命令行:%0当前bat文件路径:%~dp0当前bat文件短路径:%~sdp0 测试 1 2 3 4 5 echo 当前盘符:%~d0 echo 当前路径:%cd% echo 当前执行命令行:%0 echo 当前bat文件路 阅读全文
posted @ 2022-08-15 09:35 一贴灵 阅读(1046) 评论(0) 推荐(0) 编辑
摘要: 使用winform程序控制window服务的操作 c#之添加window服务(定时任务) - 腾讯云开发者社区-腾讯云 (tencent.com) 79条消息) C#实操1 创建windows服务,并用winform窗口程序实现安装服务、开启服务、停止服务、卸载服务_67号人生的博客-CSDN博客_ 阅读全文
posted @ 2022-08-12 16:56 一贴灵 阅读(1676) 评论(0) 推荐(0) 编辑
摘要: 1、生成XML并压缩; DataTable dt2 = DBHelperPg.ExecuteDataTable(sql); dgvStore.DataSource = dt2; string xmlFilename = "666.xml"; FileStream fsWriteXml = new F 阅读全文
posted @ 2022-08-11 16:00 一贴灵 阅读(331) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页
学以致用,效率第一