Linux(Ubuntu平台)Java通过JDBC连接MySQL数据库,与Windows平台类似,步骤如下:
下载 jdbc:
mysql-connector-java-5.1.18.tar.gz解压 jdbc: tar -zxvf mysql-connector-java-5.1.18.tar.gz
配置 jdbc:cp mysql-connector-java-5.1.18-bin.jar /usr/local/jdk1.6.0_22/jre/lib/ext/
完整源码 下载地址:免费下载地址在 http://linux.linuxidc.com/
用户名与密码都是www.linuxidc.com
具体下载目录在 /pub/2011/10/12/Linux Java连接MySQL数据库/
Java示例:private static String sql="select top, id, name, country, dtime from gametop800 where id="com.rovio.angrybirds"";
- public mysqlConnect(){
- String dbDriver = "com.mysql.jdbc.Driver";
- String url = "jdbc:mysql://localhost/top800";
- String username = "root";
- String password = "";
-
- Statement mStatement = null;
- ResultSet mResultSet = null;
- Connection mConnection = null;
-
- String sql = "select top, id, name, country, dtime from gametop800 where top<=20";
-
- try{
- Class.forName(dbDriver).newInstance();
- mConnection = DriverManager.getConnection(url, username, password);
- mStatement = mConnection.createStatement();
- mResultSet = mStatement.executeQuery(sql);
-
- try{
- while(mResultSet.next()){
- System.out.print(mResultSet.getInt(1) + " ");
- System.out.print(mResultSet.getString(2) + " ");
- System.out.print(mResultSet.getString(3) + " ");
- System.out.println(mResultSet.getString(4));
- }
- }catch (Exception e){
- System.out.println("数据库读取错误!
" + e.getMessage());
- }
- }catch (SQLException e){
- System.out.println("连接数据库错误:
" + url + "
" + e.getMessage());
- }catch (Exception e){
- e.printStackTrace();
- }finally{
- // mStatement.close();
- // mConnection.close();
- }
- }
执行结果: Linux JSP连接MySQL数据库Ubuntu 全新编译安装 OpenCV 2.3相关资讯 Linux知识
- 时光总是太匆匆!Linux已经诞生23 (08/29/2014 14:12:03)
- Linux虚拟文件系统之文件打开(sys (02/14/2012 11:41:54)
- 2012 年 Linux 峰会时间表 (02/14/2012 06:47:27)
| - 报告称当前 Linux 人才抢手 高薪也 (02/15/2012 06:35:56)
- 解析企业为何选择Linux及其特别之 (02/14/2012 08:17:59)
- Linux禁用字符闪烁的方法 (11/02/2011 10:28:25)
|
本文评论 查看全部评论 (0)