java连接通过jdbc数据库
下面提供一种固定格式
以后连接数据库就可以用这种固定模式
public class mysql {
public static void main(String[] args)throws SQLException {
Connection conn=null;
java.sql.Statement stmt=null;
ResultSet rs=null;
try{
//Class.forName("com.mysql.jdbc.Driver"); //加载数据库驱动 这句话为什么注释掉,jdk1.4之后不需要加载数据库驱动。
String url="jdbc:mysql://localhost:3306/bank?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8"; //通过DriverManagr获取数据连接 这样部分电脑可能会出错
String username="root"; //数据库的账户
String password="root"; //数据库的密码
conn=DriverManager.getConnection(url,username,password);
stmt=conn.createStatement(); //通过Connection对象获取Statement对象
String sql="select * from account"; //使用Statement语句执行SQL语句 这个sql语法是查询数据库中account表中的内容
rs=((java.sql.Statement) stmt).executeQuery(sql);
//操作ResultSet结果集
System.out.println("name | name_id");
while(rs.next()) {
String name=rs.getString("name"); //获取数据库表中的内容,你存储形式什么就通过 get数据类型来获取
String name_id=rs.getString("name_id");
System.out.println(name+" | "+name_id);
}
}catch(Exception e) {
e.printStackTrace();
}finally {
if(rs!=null)rs.close();
if(stmt!=null)stmt.close();
if(conn!=null)conn.close();
}
}
}
时区不一致错误
The server time zone value ‘?й???’ is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
出现这种错误只需要
String url=“jdbc:mysql://localhost:3306/bank?serverTimezone=GMT%2B8”;
加上**?serverTimezone=GMT%2B8**
输出乱码
如果读取数据库内容出现乱码需要加上**&useUnicode=true&characterEncoding=utf-8**
String url=“jdbc:mysql://localhost:3306/bank&useUnicode=true&characterEncoding=utf-8”;