package cn.kgc.dao;
import java.sql.Connection;
import java.sql.Date;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Timestamp;
public class JdbcTest {
ResultSet rs = null;
PreparedStatement pstmt = null;
Connection connection = null;
public void getConnection(){
try {
Class.forName("com.mysql.jdbc.Drivr");
String url = "jdbc:mysql://localhost:3306/mysqlTest";
connection = DriverManager.getConnection(url,"root","root");
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
}
public void addNews(int id,int categoryid,String title,String summary,Date createdate){
try {
this.getConnection();
String sql = "INSERT INFO ne
JDBC一般模板
最新推荐文章于 2024-11-07 10:34:02 发布
本文详细介绍了如何使用JDBC模板进行MySQL数据库的操作,包括连接数据库、执行SQL语句、处理结果集以及关闭资源等步骤,旨在提供一种高效、安全的数据库交互方式。
摘要由CSDN通过智能技术生成