当前位置:网站首页>JDBC details
JDBC details
2022-07-06 19:20:00 【Gentle ~】
Recommended reading :Druid Database connection pool
List of articles
Quick start
Java The process of operating the database
1. To write Java Code ;
2.Java Code will SQL Send to MySQL Server side ;
3.MySQL The server receives SQL Statement and execute the SQL sentence ;
4. take SQL The result of statement execution is returned to Java Code ;
JDBC Specific implementation process
1. Create a project , Import driver jar package ;
2. Registration drive :Class.forName("com.mysql.jdbc.Driver");
3. Get the connection : Connection conn = DriverManager.getConnection(url, username, password);
Java The code needs to be sent SQL to MySQL Server side , You need to establish a connection first ;
4. Definition SQL sentence :String sql = “update…” ;
;
5. Access to perform SQL object : perform SQL Sentence needs SQL Perform object , And the execution object is Statement object ,Statement stmt = conn.createStatement()
;
6. perform SQL:stmt.executeUpdate(sql);
7. Processing return results ;
8. Release resources ;
API Detailed explanation
DriverManager Get the connection
Registration drive
DriverManager( Driver management ) effect : Registration drive ;
stay Java In the document static void registerDriver(Driver driver)
Method is used to register drivers .
Inquire about MySQL Provided Driver class , You can see that this method is implemented in static code blocks . The code is as follows :
In the static code block in this class DriverManager
Object's registerDriver()
Method to register the driver , Then we just need to load Driver
class , The static code block will execute . and Class.forName("com.mysql.jdbc.Driver");
It can be loaded Driver class .
So before connecting to the database , We just need to execute the following code .
Class.forName("com.mysql.jdbc.Driver");
Be careful
MySQL 5 Later driver package , You can omit the steps of registering the driver , It will automatically load jar In bag META-INF/services/java.sql.Driver
Driver class in file .
Get database connection
static Connection getConnection(String url, String user, String password)
Parameter description
url: Connection path
grammar :jdbc:mysql://ip Address ( domain name ): Port number / Database name ? Parameter key value pair 1& Parameter key value pair 2…
Example :jdbc:mysql://127.0.0.1:3306/db1
* If the connection is local mysql The server , also mysql The default port for the service is 3306, be url I could just write it as :jdbc:mysql:/// Database name ? Parameter key value pair
* To configure useSSL=false Parameters , Disable secure connection mode , Resolve warning tips
user: user name
poassword : password
Code example
public class connect {
public static void main(String[] args) throws Exception {
// MySQL 5 Later driver package , You can omit the steps of registering the driver
// Class.forName("com.mysql.jdbc.Driver");
String url="jdbc:mysql://127.0.0.1:3306/sd?useSSL=false";
String user="root";
String password="root";
try {
Connection conn= DriverManager.getConnection(url,user,password);
System.out.println(" Successful connection !");
} catch (SQLException e) {
throw new RuntimeException(e);
}
}
}
Connection Get objects
Access to perform SQL The object of
1. Common execution SQL object
Statement createStatement()
2. precompile SQL Implementation SQL object : prevent SQL Inject
PreparedStatement prepareStatement(sql)
This method is commonly used , Can prevent SQL Inject , It will be explained in detail later in this article .
3. The object that executes the stored procedure
CallableStatement prepareCall(sql)
Obtained in this way CallableStatement
Execution objects are used to execute stored procedures , But stored procedures are MySQL It's not often used in English .
Code example
public class connect {
public static void main(String[] args) throws Exception {
// MySQL 5 Later driver package , You can omit the steps of registering the driver
// Class.forName("com.mysql.jdbc.Driver");
String url = "jdbc:mysql://127.0.0.1:3306/sd?useSSL=false";
String user = "root";
String password = "root";
Connection conn = DriverManager.getConnection(url, user, password);
String sql="update course set cname='C++' where cno=1";
Statement stmt=conn.createStatement();
int count=stmt.executeUpdate(sql);
System.out.println(count);
}
}
Business management
Open transaction : BEGIN; perhaps START TRANSACTION;
Commit transaction : COMMIT;
Roll back the transaction :ROLLBACK;
MySQL The default is to automatically commit transactions
Open transaction
void setAutoCommit(boolean autoCommit)
Participate in autoCommit Indicates whether the transaction is automatically committed ,true Represents an automatic commit transaction ,false Indicates that the transaction is committed manually . To start a transaction, you need to set this parameter to false.
Commit transaction
void commit()
Roll back the transaction
void rollback()
Code example
public class connect {
public static void main(String[] args) throws Exception {
// MySQL 5 Later driver package , You can omit the steps of registering the driver
// Class.forName("com.mysql.jdbc.Driver");
String url = "jdbc:mysql://127.0.0.1:3306/sd?useSSL=false";
String user = "root";
String password = "root";
Connection conn = DriverManager.getConnection(url, user, password);
String sql1="update course set cname='Java' where cno=1";
String sql2="update course set cname='Java' where cno=2";
Statement stmt=conn.createStatement();
try {
int count1=stmt.executeUpdate(sql1);
System.out.println(count1);
int i=1/0; // Man made anomalies , To observe the return roll operation
int count2=stmt.executeUpdate(sql2);
System.out.println(count2);
// If there is no abnormality , Then submit all changes , Database update
conn.commit();
} catch (SQLException e) {
// If there are anomalies , Then undo all previous operations (sql1 Update operation for )
conn.rollback();
}
}
}
Statement Execute statement
Statement Object is used to execute SQL sentence . And for different types of
SQL Statements use different methods .
perform DDL、DML sentence :executeUpdate
int executeUpdate(String sql)
perform DQL sentence :executeQuery
ResultSet executeQuery(String sql)
This method involves ResultSet object , It will be explained in detail later in this article .
Code example
public class connect {
public static void main(String[] args) throws Exception {
// MySQL 5 Later driver package , You can omit the steps of registering the driver
// Class.forName("com.mysql.jdbc.Driver");
String url = "jdbc:mysql://127.0.0.1:3306/sd?useSSL=false";
String user = "root";
String password = "root";
Connection conn = DriverManager.getConnection(url, user, password);
String sql1 = "update st set age=15 where name='Tom'";
String sql2 = "select * from st";
Statement stmt = conn.createStatement();
// perform DDL、DML sentence
int c = stmt.executeUpdate(sql1);
System.out.println(c);
System.out.println("------------------");
// perform DQL sentence : Inquire about
ResultSet rs = stmt.executeQuery(sql2);
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
System.out.println(id + " " + name + " " + age);
}
}
}
Running results
ResultSet Processing return results
summary
ResultSet
Encapsulates the SQL The result of the query statement , Yes DQL Statement will return the object .
ResultSet executeQuery(String sql)
ResultSet
Object provides methods to manipulate query result data , as follows :
Method | explain |
---|---|
boolean next() | Move the cursor down one line and judge whether the new line is valid ,true It works 、false Invalid |
get data Xxx getXxx( Parameters );
Xxx
: The data type to query , Such as getInt( Parameters )
; Parameters
:
If you query with the name of the column, it is passed to String
type , Such as getString("name");
If you use the index of the column to query , Pass on int
type , The index of the first column of the table is 1, Such as getString(1);
Code example
public class connect {
public static void main(String[] args) throws Exception {
// MySQL 5 Later driver package , You can omit the steps of registering the driver
// Class.forName("com.mysql.jdbc.Driver");
String url = "jdbc:mysql://127.0.0.1:3306/sd?useSSL=false";
String user = "root";
String password = "root";
Connection conn = DriverManager.getConnection(url, user, password);
String sql = "select * from st";
Statement stmt = conn.createStatement();
System.out.println("--------- Query with the name of the column ----------");
ResultSet rs = stmt.executeQuery(sql);
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
System.out.println(id + " " + name + " " + age);
}
System.out.println("--------- Use the index of the column to query ----------");
ResultSet rs1 = stmt.executeQuery(sql);
while (rs1.next()) {
int id = rs1.getInt(1);
String name = rs1.getString(2);
int age = rs1.getInt(3);
System.out.println(id + " " + name + " " + age);
}
}
}
PreparedStatement Anti Injection
PreparedStatement effect : precompile SQL Statement and execute , The prevention of SQL Injection problem . It is achieved by escaping special characters .
obtain PreparedStatement object
PreparedStatement prepareStatement(String sql)
// SQL Parameter value in statement , Use ? Placeholder replacement
String sql = "select * from user where username = ? and password = ?";
// adopt Connection Object acquisition , And pass in the corresponding sql sentence
PreparedStatement pstmt = conn.prepareStatement(sql);
pstmt.setString(1,"user");
pstmt.setInt(2,123456);
Set the parameter value
PreparedStatement object :setXxx( Parameters , value ): to ? assignment
Xxx: data type ; Such as setInt(1,10);
Parameters :?
Location number of , from 1 Start ;
** value :** The value assigned to the parameter
perform SQL sentence
call executeUpdate() and executeQuery()
These two methods do not need to be passed SQL sentence , Because get SQL Statement has been executed on SQL The sentence is precompiled .
public void testPreparedStatement() throws Exception {
//2. Get the connection : If the connection is local mysql And the port is the default 3306 Can simplify writing
String url = "jdbc:mysql:///db1?useSSL=false";
String username = "root";
String password = "1234";
Connection conn = DriverManager.getConnection(url, username, password);
// Receive user input User name and password
String name = "zhangsan";
String pwd = "' or '1' = '1";
// Definition sql
String sql = "select * from tb_user where username = ? and password = ?";
// obtain pstmt object
PreparedStatement pstmt = conn.prepareStatement(sql);
// Set up ? Value
pstmt.setString(1,name);
pstmt.setString(2,pwd);
// perform sql
ResultSet rs = pstmt.executeQuery();
// Judge whether the login is successful
if(rs.next()){
System.out.println(" Login successful ~");
}else{
System.out.println(" Login failed ~");
}
//7. Release resources
rs.close();
pstmt.close();
conn.close();
}
边栏推荐
- 保证接口数据安全的10种方案
- QPushButton绑定快捷键的注意事项
- AIRIOT物联网平台赋能集装箱行业构建【焊接工位信息监控系统】
- 应用使用Druid连接池经常性断链问题分析
- How word displays modification traces
- R语言dplyr包进行数据分组聚合统计变换(Aggregating transforms)、计算dataframe数据的分组均值(mean)
- 史上超级详细,想找工作的你还不看这份资料就晚了
- Sanmian ant financial successfully got the offer, and has experience in Android development agency recruitment and interview
- Simple understanding of MySQL database
- Synchronous development of business and application: strategic suggestions for application modernization
猜你喜欢
通俗的讲解,带你入门协程
Documents to be used in IC design process
LeetCode-1279. Traffic light intersection
Problems encountered in using RT thread component fish
思维导图+源代码+笔记+项目,字节跳动+京东+360+网易面试题整理
如何提高网站权重
helm部署etcd集群
pychrm社区版调用matplotlib.pyplot.imshow()函数图像不弹出的解决方法
深入分析,Android面试真题解析火爆全网
[translation] a GPU approach to particle physics
随机推荐
Unlock 2 live broadcast themes in advance! Today, I will teach you how to complete software package integration Issues 29-30
Interface test tool - postman
Tensorflow and torch code verify whether CUDA is successfully installed
R language ggplot2 visualization: use the ggstripchart function of ggpubr package to visualize the grouped dot strip plot, and set the add parameter to add box plots for different levels of dot strip
C # - realize serialization with Marshall class
Understanding disentangling in β- VAE paper reading notes
Black Horse - - Redis Chapter
ROS自定义消息发布订阅示例
IC设计流程中需要使用到的文件
MATLAB中deg2rad和rad2deg函数的使用
青龙面板最近的库
Dark horse -- redis
Swagger2 reports an error illegal DefaultValue null for parameter type integer
First day of rhcsa study
助力安全人才专业素养提升 | 个人能力认证考核第一阶段圆满结束!
使用map函数、split函数一行键入多个元素
R language uses rchisq function to generate random numbers that conform to Chi square distribution, and uses plot function to visualize random numbers that conform to Chi square distribution
Actf 2022 came to a successful conclusion, and 0ops team won the second consecutive championship!!
MRO industrial products enterprise procurement system: how to refine procurement collaborative management? Industrial products enterprises that want to upgrade must see!
CPU负载很低,loadavg很高处理方法