时间:2021-07-01 10:21:17 帮助过:35人阅读
MySQL的安装使用
个人比较推荐5.7版本的数据库,这个比较适应各种电脑的问题,不能安装MySQL,多去网上搜索安装教程 下载地址
public class Mysql { static String DBDORIVER="com.mysql.jdbc.Driver"; //是本地的MySQL数据库:localhost:3306,安装一般都是3306,改过的就不是,myta是数据库名,其他都差不多一样 static String DBURL="jdbc:mysql://localhost:3306/myta?useUnicode=true&characterEncoding=utf-8"; static String DBName="root"; //登入用户名 static String DBPwd="123456";//登入密码 static Connection conn=null; public void getConnection(){ try{ Class.forName(DBDORIVER);//加载驱动,连接MySQL的jdbc conn=DriverManager.getConnection(DBURL,DBName,DBPwd);//连接数据库 System.out.println("链接成功"); Statement stmt=conn.createStatement();//创建Statement对象,是数据库的一个接口 String sql="select*from mytable"; ResultSet rSet=stmt.executeQuery(sql);//将搜索的结果放入结果集中 while (rSet.next()) {//遍历这个结果集 System.out.println(rSet.getString(1)+"\t"+rSet.getString(2)); //一次输出每个数据 } }catch (Exception e) { // TODO: handle exception System.out.println(e.getMessage()); } } public static void main(String[] args) throws SQLException { Mysql mysql=new Mysql();//创建对象 mysql.getConnection();//调用getConnection方法 } }
数据库——MySQL——>Java篇
标签:href 其他 数据 sel 搜索 throw class name show