- 博客(13)
- 资源 (1)
- 收藏
- 关注
原创 DB2总结(常用命令、存储过程)
注意: "WHC_BUS"代表该数据表所属的表空间;运行存储过程命令: db2 "call 存储过程名称('1')"编译存储过程命令:db2 -td@ -vf 存储过程名称.sql。连接数据库命令:db2 connect to 数据库名。执行SQL脚本命令:db2 -txvf 文件名.sql。执行shell脚本命令:sh 文件名.sh。,C.TYPENAME 字段数据类型。C.COLNO+1 字段序号,,C.LENGTH 字段长度。,C.SCALE 字段精度`' ' 系统简称,
2023-07-06 15:59:10
4361
1
转载 mybatis中红色下划线:Result type not match for select id=“getList“
mybatis中红色下划线:Result type not match for select id="getList"
2022-10-12 15:11:44
1866
1
转载 Mybatis报错:java.lang.ExceptionInInitializerError
Mybatis报错:java.lang.ExceptionInInitializerError
2022-10-12 14:16:50
427
转载 mybatis 错误提示:Type interface com.xiaoma.dao.UserMapper is not known to the MapperRegistry.
mybatis 错误提示:Type interface com.xiaoma.dao.UserMapper is not known to the MapperRegistry.
2022-10-12 14:01:16
807
转载 MySQL修改密码报错ERROR 1396 (HY000): Operation ALTER USER failed for ‘root‘@‘localhost‘
MySQL修改密码报错ERROR 1396 (HY000): Operation ALTER USER failed for ‘root‘@‘localhost‘
2022-10-12 10:45:00
4939
转载 MySQL client does not support authentication protocol requested by server问题解决
1251 - Client does not support authentication protocol reuqested by server;consider upgrading MySQL client
2022-10-12 10:40:51
377
转载 解决:Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException:
解决:Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException
2022-10-12 10:35:25
3236
1
原创 SpringBoot整合Mybatis
选择项目所需要的依赖建好后的pom.xml文件<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://m.
2022-03-10 23:01:02
252
原创 mybatis项目的创建
1、创建数据库CREATE DATABASE StudentCREATE TABLE users(id INT(20) NOT NULL PRIMARY KEY,name1 VARCHAR(30) DEFAULT NULL,pwd VARCHAR(30) DEFAULT NULL)ENGINE=INNODB DEFAULT CHARSET=utf8;INSERT INTO users(id,name1,pwd) VALUES(1,'张三','123'),(2,'王五','12...
2022-03-07 17:51:36
675
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人