上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: 【PostgreSQL】下载安装PgSQL 官网 https://www.enterprisedb.com/downloads/postgres-postgresql-downloads 安装的时候有个要收入密码的环节,记得要保存一下密码 pgadmin4工具安装及使用 阅读全文
posted @ 2022-09-14 15:33 向上丶 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 更换下oci.dll尝试下 路径是F:\Oracle_database\product\11.2.0\dbhome_1\BIN 阅读全文
posted @ 2022-09-13 16:20 向上丶 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1、如果提示hostxxxx not allowed mysqlserver 处理方式:去my.ini文件添加一下bind-adress=0.0.0.0 操作完以后可以重启mysql,在本地的cmd中telnet ip 端口 是不是通了 2、如果通了就尝试连接,可能不能连接,这时候需要去mysql 阅读全文
posted @ 2022-08-18 14:03 向上丶 阅读(450) 评论(0) 推荐(0) 编辑
摘要: window系统安装mysql8.0完整版 !!!!本人修改了mysql的端口号3308,可以自己修改my.ini文件中的配置 一、下载两个版本的MySQL 进入官网下载:https://www.mysql.com/ 二、将下载下来的压缩包放到合适的位置并且解压缩 注意:此处先解压安装MySQL8时 阅读全文
posted @ 2022-08-16 10:29 向上丶 阅读(1068) 评论(0) 推荐(0) 编辑
摘要: 创建用户: SQL> create user Oracle identified by qjx 2 default tablespace users 3 temporary tablespace temp; 用户已创建。 SQL> connect system/qjx138 已连接。 SQL> gr 阅读全文
posted @ 2022-08-12 10:19 向上丶 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 前后端跨域问题 package com.atguigu.gmall.gateway.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Co 阅读全文
posted @ 2022-08-10 16:33 向上丶 阅读(138) 评论(0) 推荐(0) 编辑
摘要: <property name="jdbcUrl">jdbc:mysql://localhost:3306/bookdb?useUnicode=true&amp;characterEncoding=utf8&amp;useSSL=false&amp;serverTimezone=GMT&amp;all 阅读全文
posted @ 2022-07-28 20:01 向上丶 阅读(36) 评论(0) 推荐(0) 编辑
摘要: HttpClient工具 import net.sf.json.JSONObject; import org.apache.http.HttpEntity; import org.apache.http.NameValuePair; import org.apache.http.client.con 阅读全文
posted @ 2022-07-06 15:33 向上丶 阅读(96) 评论(0) 推荐(0) 编辑
摘要: java中List集合日期排序(Collections.sort排序) 1、集合中有日期字段想排序 private static void listSorts(List list) { Collections.sort(list, new Comparator() { SimpleDateForma 阅读全文
posted @ 2022-07-06 15:30 向上丶 阅读(4583) 评论(0) 推荐(0) 编辑
摘要: 数据库表一对多,查询的数据又不想多条显示1、由于需求是有一个发布会议通知功能,可以维护参会人,客户想要“我的会议”功能列表,一共两个表会议通知表、参会情况表(两个表关联字段notdid--会议id),一对多的关系, 由于用户想知道自己的参会情况,所以要关联查询参会情况表(此表有个参会状态字段),在开 阅读全文
posted @ 2022-07-05 10:49 向上丶 阅读(112) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页