java怎么从数据库读取存储的地址,希望有代码
发布网友
发布时间:2022-04-07 23:08
我来回答
共3个回答
热心网友
时间:2022-04-08 00:37
public void add(Order order) throws SQLException {
DBConnection dbConnection = new DBConnection();
Connection conn = dbConnection.getConn();
String sql = "insert into hunsion.order(id_store_item,usetime, address, tel, name, amount) values(?,?,?,?,?,?);";
PreparedStatement prepareStatement = null;
try {
prepareStatement = conn.prepareStatement(sql);
prepareStatement.setInt(1, order.getId_store_item());
prepareStatement.setString(2, order.getUsetime());
prepareStatement.setString(3, order.getAddress());
prepareStatement.setString(4, order.getTel());
prepareStatement.setString(5, order.getName());
prepareStatement.setString(6, order.getAmount());
prepareStatement.executeUpdate();
} catch (Exception e) {
e.printStackTrace();
} finally {
prepareStatement.close();
conn.close();
prepareStatement = null;
conn = null;
}
}
就大概发一个数据插入的一个东西给你吧 下面我在贴一下读取的
public Connection getConn() {
Connection conn = null;
String url = "jdbc:mysql://localhost:3306/hunsion";
String dbname = "root";
String dbpwd = "";
try {
Class.forName("org.gjt.mm.mysql.Driver");
if (conn == null) {
conn = DriverManager.getConnection(url, dbname, dbpwd);
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return conn;
}
其实很简单的 不懂得你可以在问
热心网友
时间:2022-04-08 01:55
如果简单写一个jdbc连接数据库的查询
SELECT * From 表 where 条件;然后遍历得到的list,可以获取到存储的地址
热心网友
时间:2022-04-08 03:30
什么数据库?什么存储地址,是表空间的地址还是数据在表里的位置?