上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页
摘要: public static String GetInClause(String field, List<String> valueList){ if(valueList.size()==0){ return " "; } Supplier<Stream<String>> idList = ()->v 阅读全文
posted @ 2020-07-02 10:55 wolbo 阅读(184) 评论(0) 推荐(0) 编辑
摘要: # listener.ora Network Configuration File: F:\GSPCLOUD\Oracle\product\12.2.0\dbhome_1\network\admin\listener.ora # Generated by Oracle configuration t 阅读全文
posted @ 2020-06-25 09:04 wolbo 阅读(151) 评论(0) 推荐(0) 编辑
摘要: DECLARE clobValue gspdatabaseobject.content%TYPE; BEGIN clobValue := 'very long text'; UPDATE gspdatabaseobject SET content = clobValue,code='FIGLAccD 阅读全文
posted @ 2020-06-18 10:38 wolbo 阅读(3211) 评论(0) 推荐(0) 编辑
摘要: 1 manifest.json { "name": "Hello Extensions", "description": "Base Level Extension", "version": "1.0", "manifest_version": 2, "browser_action": { // " 阅读全文
posted @ 2020-06-03 20:59 wolbo 阅读(529) 评论(0) 推荐(0) 编辑
摘要: 个人理解 1工厂模式解决类创建的问题,需要对要创建的产品进行抽象 2工厂模式是将类的创建和使用分离 3简单工厂仅是把类的创建过程用if else用放到一起,通过传入条件不同实例化不同的类 4 工厂模式中每一种产品对应一个工厂,添加新产品非常方便,完美符合开闭原则 5 抽象工厂是工厂模式的延伸,增加产 阅读全文
posted @ 2020-05-27 23:24 wolbo 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 使用git-bash Use the split command in Git Bash to split a file: into files of size 500MB each: split myLargeFile.txt -b 500m into files with 10000 lines 阅读全文
posted @ 2020-05-27 16:18 wolbo 阅读(971) 评论(1) 推荐(0) 编辑
摘要: -exec 1.参数是一个一个传递的,传递一个参数执行一次rm 2.文件名有空格等特殊字符也能处理-xargs 1.一次将参数传给命令,可以使用-n控制参数个数 2.处理特殊文件名需要采用如下方式: find . -name "*.txt" print0 |xargs -0 rm {} find / 阅读全文
posted @ 2020-05-23 10:27 wolbo 阅读(288) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/laramia/p/5035744.html 阅读全文
posted @ 2020-05-20 16:01 wolbo 阅读(187) 评论(0) 推荐(0) 编辑
摘要: for /? 能看到的比下面详细 获取文件夹的名字 for /f "delims=" %%i in ("%cd%") do set folder=%%~ni for /f "delims=\" %%a in ("%CD%") do set CURR=%%a 1 变量 %0 %1 %2: 参数 类似于 阅读全文
posted @ 2020-05-18 10:45 wolbo 阅读(1516) 评论(0) 推荐(0) 编辑
摘要: oracle: 查用户表空间 select username,default_tablespace from dba_users; 删除表空间: drop tablespace "B2-4" including contents and datafiles CASCADE CONSTRAINTS; 阅读全文
posted @ 2020-05-02 11:47 wolbo 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页