使用java编写一个可以向mysql数据库插入数据的程序,其中数据库字段有 name,age,grade
时间: 2024-05-15 15:14:36 浏览: 107
我可以为您提供一段Java代码,用于向MySQL数据库中插入数据,其中包括name、age和grade三个字段:
```
import java.sql.*;
public class InsertDataToMySQL {
static final String DB_URL = "jdbc:mysql://localhost:3306/mydatabase";
static final String USER = "username";
static final String PASS = "password";
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
try{
Class.forName("com.mysql.jdbc.Driver");
System.out.println("Connecting to database...");
conn = DriverManager.getConnection(DB_URL,USER,PASS);
System.out.println("Creating statement...");
stmt = conn.createStatement();
String sql = "INSERT INTO students (name,age,grade) " +
"VALUES ('John Doe', 18, 'A')";
stmt.executeUpdate(sql);
System.out.println("Data has been inserted into the table.");
stmt.close();
conn.close();
}catch(SQLException se){
se.printStackTrace();
}catch(Exception e){
e.printStackTrace();
}finally{
try{
if(stmt!=null)
stmt.close();
}catch(SQLException se2){
}
try{
if(conn!=null)
conn.close();
}catch(SQLException se){
se.printStackTrace();
}
}
}
}
```
需要注意的是,您需要根据您的MySQL数据库连接信息来修改变量DB_URL、USER和PASS的值,以及根据您的需求修改插入语句中的数据。
阅读全文