会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Binary's Blog
博客园
首页
新随笔
联系
订阅
管理
2021年8月12日
Oracle Java字段对照
摘要: JDBCType JavaType CHAR String VARCHAR String LONGVARCHAR String NUMERIC java.math.BigDecimal DECIMAL java.math.BigDecimal BIT boolean BOOLEAN boolean
阅读全文
posted @ 2021-08-12 11:04 码出天地
阅读(81)
评论(0)
推荐(0)
2021年4月26日
angular tslint文件详解
摘要: { "rulesDirectory": [ "node_modules/codelyzer" ], "rules": { "arrow-return-shorthand": true, // 允许使用箭头函数返回的简略写法 "callable-types": true, // 只有调用签名的接口或文
阅读全文
posted @ 2021-04-26 09:27 码出天地
阅读(259)
评论(0)
推荐(0)
2021年2月3日
oracle分组排序查询
摘要: oracle分组排序查询 SELECT * FROM (SELECT row_number() over(partition BY service_name order by service_id DESC) rn, bs.* FROM mct_business_service bs ) WHERE
阅读全文
posted @ 2021-02-03 10:56 码出天地
阅读(136)
评论(0)
推荐(0)
2021年1月5日
NGINX 配置文件详解
摘要: # 也许没有列出所有配置的nginx配置文件demo # 本demo中的基础配置示例多为默认配置 # # # # 是否以守护进程运行 daemon on; # 是否以master/worker方式工作 master_process on; # Nginx worker进程个数 # master/wo
阅读全文
posted @ 2021-01-05 22:26 码出天地
阅读(157)
评论(0)
推荐(0)
2019年10月29日
通过python,批量修改指定文件目录下的文件名
摘要: import os path = "C:\\Users\\**\\" files = os.listdir(path) os.chdir(path) for file in files: name = file.replace(' ', '') new_name = name[:4] + name[
阅读全文
posted @ 2019-10-29 14:50 码出天地
阅读(628)
评论(0)
推荐(0)
2019年10月26日
Hello World!
摘要: public class Demo{ public static void main(String[] args) { System.out.println("hello world"); } }
阅读全文
posted @ 2019-10-26 22:52 码出天地
阅读(105)
评论(0)
推荐(0)
公告