上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 29 下一页
摘要: 1.查看服务器IP select UTL_INADDR.get_host_address() from dual; 2.当前会话主机IP select sys_context('USERENV', 'IP_ADDRESS') from dual 3.服务器主机名 SELECT host_name f 阅读全文
posted @ 2022-06-30 15:21 天天代码码天天 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 1.获取CPU详细信息 cat /proc/cpuinfo 2.查看物理CPU个数 cat /proc/cpuinfo |grep "physical id"|sort |uniq |wc -l 3.查看CPU核数 cat /proc/cpuinfo |grep "cores"|uniq 4.查看C 阅读全文
posted @ 2022-06-30 15:10 天天代码码天天 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 下载地址 NuGet Package Manager - Visual Studio Marketplace NuGet包地址 NuGet Gallery | Home 阅读全文
posted @ 2022-06-30 12:27 天天代码码天天 阅读(9) 评论(0) 推荐(0) 编辑
摘要: NLog.Config <?xml version="1.0" encoding="utf-8" ?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSc 阅读全文
posted @ 2022-06-28 17:00 天天代码码天天 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 1、安装pyzbar pip install pyzbar 2、代码 import os import cv2 as cv from pyzbar import pyzbar # 目录路径 path = "D:\data_img" data = []; file_list = os.listdir( 阅读全文
posted @ 2022-06-27 11:50 天天代码码天天 阅读(32) 评论(0) 推荐(0) 编辑
摘要: mybatis xml 文件中对于重复出现的sql 片段可以使用标签提取出来,在使用的地方使用标签引用即可具体用法如下: <sql id="Base_Column_List"> id,name </sql> <select id="select"> select <include refid="Ba 阅读全文
posted @ 2022-06-23 11:45 天天代码码天天 阅读(79) 评论(0) 推荐(0) 编辑
摘要: //本月 @Test public void test01() { SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); Calendar c = Calendar.getInstance(); c.add(Calendar.MO 阅读全文
posted @ 2022-06-23 10:18 天天代码码天天 阅读(9) 评论(0) 推荐(0) 编辑
摘要: select trunc(sysdate, 'mm'), last_day(trunc(sysdate)), trunc(add_months(trunc(sysdate), -1), 'mm'), last_day(add_months(trunc(sysdate), -1)), trunc(ad 阅读全文
posted @ 2022-06-22 16:59 天天代码码天天 阅读(55) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2022-06-22 14:37 天天代码码天天 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 表结构、测试数据 drop table t1; drop table t2; CREATE TABLE T1 ( name VARCHAR2(10) , code VARCHAR2(10) ); ALTER TABLE t1 ADD PRIMARY KEY(name); insert into t1 阅读全文
posted @ 2022-06-14 11:10 天天代码码天天 阅读(48) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 29 下一页