The difference between MySQL execute, executeUpdate and executeQuery

The difference between MySQL execute, executeUpdate and executeQuery

The differences among execute, executeUpdate, and executeQuery (and their return values)

1. boolean execute(String sql)

Allows execution of query statements, update statements, and DDL statements.

When the return value is true, it means that a query statement is executed, and the result can be obtained through the getResultSet method; when the return value is false, an update statement or DDL statement is executed, and the getUpdateCount method obtains the number of updated records.

example:

public static void main(String[] args) { 
 
 Connection conn = null; 
 Statement stm = null; 
 ResultSet rs = null; 
 try { 
  Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); 
  conn = DriverManager.getConnection("jdbc:sqlserver://localhost:1433;databaseName=Test;user=sa;password=sasa"); 
  stm = conn.createStatement(); 
  boolean ret = stm.execute("select * from stuinfo"); 
  if(ret){ 
  rs = stm.getResultSet(); 
  while(rs.next()){ 
   System.out.println("Name: "+rs.getString("stuName")+"\tAge: "+rs.getString("stuScore")); 
  } 
  } 
  ret = stm.execute("update stuinfo set stuScore=62 where stuname='张三'"); 
  int count = stm.getUpdateCount(); 
  if(!ret){ 
  System.out.println(count+"The data was modified successfully!"); 
  } 
 } catch (ClassNotFoundException e) { 
  e.printStackTrace(); 
 } catch (SQLException e) { 
  e.printStackTrace(); 
 }  
 } 

2. int executeUpdate(String sql)

Executes the given SQL statement, which may be an INSERT, UPDATE, or DELETE statement, or an SQL statement that returns nothing (such as an SQL DDL statement).

The return value is the number of records updated.

3. ResultSet executeQuery(String sql)

Executes the given SQL statement, which returns a single ResultSet object.

execute is a combination of executeUpdate and executeQuery

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • Understand the difference between submit and execute through code examples
  • PHP PDOStatement::execute Explained
  • Solution to the issue of JDBC Oracle executing executeUpdate and getting stuck
  • Tutorial on using prepare, execute and deallocate statements in MySQL
  • Failed to execute goal org...Solution
  • ThreadPoolExecutor thread pool principle and its execute method (detailed explanation)
  • Use and precautions of Python executemany
  • What is the difference between execute and submit?

<<:  How to use Dockerfile to create a mirror of the Java runtime environment

>>:  How to reference external CSS files and iconfont in WeChat applet wxss

Recommend

Causes and solutions for slow MySQL query speed and poor performance

1. What affects database query speed? 1.1 Four fa...

Summarize the commonly used nth-child selectors

Preface In front-end programming, we often use th...

Understand CSS3 Grid layout in 10 minutes

Basic Introduction In the previous article, we in...

Linux kernel device driver memory management notes

/********************** * Linux memory management...

Difference and principle analysis of Nginx forward and reverse proxy

1. The difference between forward proxy and rever...

Example code of setting label style using CSS selector

CSS Selectors Setting style on the html tag can s...

100 ways to change the color of an image using CSS (worth collecting)

Preface “When it comes to image processing, we of...

Table Tag (table) In-depth

<br />Table is a tag that has been used by e...

Example of how to mosaic an image using js

This article mainly introduces an example of how ...

What to do if you forget your mysql password

Solution to forgetting MySQL password: [root@loca...

JavaScript custom plug-in to implement tab switching function

This article shares the specific code of JavaScri...

Detailed example of using the distinct method in MySQL

A distinct Meaning: distinct is used to query the...

Detailed explanation of Vue save automatic formatting line break

I searched for many ways to change it online but ...

How to display JSON data in HTML

background: Sometimes we need to display json dat...