摘要: 如果报错是ORA-12154: TNS:could not resolve the connect identifier specified考虑数据库实例没有启动 1、直接在登录时输入数据库信息 ip:端口/数据库名 如果可以正常登录了,配置一下环境变量 新建环境变量 1、变量名为:ORACLE_H 阅读全文
posted @ 2020-11-04 14:01 堕落先锋 阅读(2187) 评论(0) 推荐(1) 编辑
摘要: python初学者,方便下次使用的 def insert_oracle(): con = cx_Oracle.connect('test/123456@IP/test', encoding='utf-8') data = pd.read_excel('D:\\path.excel') #对数据进行处 阅读全文
posted @ 2020-06-18 16:48 堕落先锋 阅读(633) 评论(0) 推荐(0) 编辑
摘要: import cx_Oracle import pandas as pd import random import numpy as np oracle数据库update时候不能使用%s做占位符 def update_oracle(): conn = cx_Oracle.connect('test/ 阅读全文
posted @ 2020-06-18 14:33 堕落先锋 阅读(2510) 评论(0) 推荐(0) 编辑
摘要: <div> <ul id="permissionTree" class="ztree"></ul> </div> <script src="${APP_PATH}/ztree/jquery.ztree.all-3.5.min.js"></script> <script type="text/java 阅读全文
posted @ 2020-06-04 17:08 堕落先锋 阅读(95) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-05-05 14:25 堕落先锋 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 就是excel文件拿到以后,先将所有数据遍历一遍,给每个数据做一个标记,就是map映射,之后 就可以任意遍历所有数据,并取值了。 public List GetMapList() { List dataList = Lists.newArrayList(); for (int i = this.ge 阅读全文
posted @ 2020-04-27 19:06 堕落先锋 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 请求过程先请求IP1,之后又请求了IP2所以直接导致了跨域请求 window.open("http://IP1/项目名/pdf/web/anirsViewer.jsp?file=" +encodeURIComponent("http://IP2/项目名//filePdfWord/filePdfWor 阅读全文
posted @ 2020-04-17 16:22 堕落先锋 阅读(116) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-04-14 14:43 堕落先锋 阅读(0) 评论(0) 推荐(0) 编辑
摘要: http://www.mamicode.com/info detail 906639.html WdatePicker({ el: this, //点击对象id,一般可省略el lang: 'auto', //语言选择,一般用auto dateFmt: 'yyyy MM dd HH:mm:ss', 阅读全文
posted @ 2020-04-01 18:20 堕落先锋 阅读(536) 评论(0) 推荐(0) 编辑
摘要: 1、开放端口 firewall cmd zone=public add port=5672/tcp permanent 开放5672端口 firewall cmd zone=public remove port=5672/tcp permanent 关闭5672端口 firewall cmd rel 阅读全文
posted @ 2020-03-26 16:41 堕落先锋 阅读(981) 评论(0) 推荐(0) 编辑