java---資料庫操作

來源:互聯網
上載者:User

標籤:cal   data   cat   pass   driver   jdb   can   訪問   lte   

串連資料庫的代碼:

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.sql.Statement;

public class main{

            public static void main(String[]args){

                     Connnection con;//聲明Connection對象

                     String driver="com.mysql.jdbc.Driver";//驅動程式名

                     String url="jdbc:mysql://localhost:3306/sqltestdb";//url指向要訪問的資料庫名的mydata

                     String  user="root";

                     String password="123456";

                     //遍曆查詢結果集

                     try{

                            Class.forName(driver);

                            //getConnection方法串連資料庫

                            con=DriverManager.getConnection(url,user,password);

                            if(!con.isClosed())

                                    System.out.println("Succeeded  connecting to the database");

                          //建立Statement對象來執行sql語句

                           Statement statement=con.createStatement();

                           String sql="select * from emp";// 要執行的sql語句

                           ResultSet rs=statement.excuteQuery(sql);   //ResultSet類用來存放結果集

                           System.out.println("--------------");

                           System.out.println("執行結果如下:");

                           System.out.println("---------------");

                           System.out.println("姓名"+"\t"+"職稱");

                           System.out.println("--------------");

                           String job=null;

                           String id=null;

                            while(rs.next()){

                              //擷取stuname這列資料

                              job=rs.getString("job");

                              id=rs.getString("ename"); 

                              System.out.println(job+"\t"+id);

                                }

                             rs.close();

                             con.close();

                            }catch(ClassNotFoundException e){

                                 System.out.println("sorry,i can‘t find driver");

                                 e.printStackTrace();

                                 }catch(SQLException e){

                                        e.printStacktrace();

                                            }catch(Exception e){

                                             e.printStackTrace();

                                             }

                                   finally{

                                    System.out.println("資料庫成功擷取到資料");

                                          }

                 }

}

          

                                           

                                                  

java---資料庫操作

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.