資料庫程式設計方法總結
針對現在很多應用都與資料庫通訊相關.講訴常用的資料庫程式設計方法.如:通用的ODBC,JDBC.或者針對某一型別資料庫程式設計方法進行總結.整理時間:2009-12-01至2009-12-31
[@more@]package com.sp;
import java.sql.*;
public class TestOra {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Connection ct=null;
Statement sm=null;
ResultSet rs=null;
try {
//jdbc-odbc
// Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
// Connection ct=DriverManager.getConnection("jdbc:odbc:wgods","scott","tiger");
// Statement sm=ct.createStatement();
//
// ResultSet rs=sm.executeQuery("select * from emp");
//jdbc mysql
//Class.forName("com.mysql.jdbc.Driver");
//ct=DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/wgods?user=root&password=");
//jdbc
Class.forName("oracle.jdbc.driver.OracleDriver");
ct=DriverManager.getConnection("jdbc:oracle:thin:@127.0.0.1:1521:wgods","scott","tiger");
sm=ct.createStatement();
rs=sm.executeQuery("select * from emp");
while(rs.next())
{
System.out.println("使用者名稱:"+rs.getString(2));
}
} catch (Exception e) {
e.printStackTrace();
// TODO: handle exception
} finally
{
try {
rs.close();
sm.close();
ct.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22630256/viewspace-1028130/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 資料庫設計總結資料庫
- MySQL 資料庫設計總結MySql資料庫
- MySQL資料庫六大設計規範總結1MySql資料庫
- 資料庫實驗五:資料庫程式設計資料庫程式設計
- 資料庫實驗八 資料庫程式設計資料庫程式設計
- 使用 ER 方法的資料庫設計方法資料庫
- 資料庫高併發解決方法總結資料庫
- 【資料庫設計】資料庫的設計資料庫
- Python SQLite資料庫程式設計PythonSQLite資料庫程式設計
- 42. 資料庫程式設計資料庫程式設計
- 資料庫設計原則與方法資料庫
- MySQL資料庫總結MySql資料庫
- 【程式設計素質】程式設計思想總結程式設計
- 好程式設計師大資料教程分享HadoopHDFS操作命令總結程式設計師大資料Hadoop
- 好程式設計師大資料學習路線Hbase總結程式設計師大資料
- Go Web 程式設計之 資料庫GoWeb程式設計資料庫
- 抽獎小程式資料庫設計資料庫
- 程式設計感悟總結一程式設計
- Nio程式設計模型總結程式設計模型
- 設計用例的方法總結
- [資料庫]【MySQL】MySQL資料庫規範總結資料庫MySql
- 明確應用程式型別與資料庫結構設計型別資料庫
- 計算機程式設計心得總結計算機程式設計
- 好程式設計師大資料培訓分享Spark技術總結程式設計師大資料Spark
- Go Web 程式設計--應用資料庫GoWeb程式設計資料庫
- 元件庫通用樣式設計總結元件
- java 資料庫程式設計(一)JDBC連線Sql Server資料庫Java資料庫程式設計JDBCSQLServer
- PROG2007程式設計總結程式設計
- Javascript非同步程式設計總結JavaScript非同步程式設計
- MR核心程式設計思想總結程式設計
- Java 程式設計技巧之資料結構Java程式設計資料結構
- 資料庫分庫分表的總結資料庫
- 【Web總結】資料庫系統Web資料庫
- oceanbase資料庫比賽總結資料庫
- 資料庫面試題總結資料庫面試題
- 好程式設計師大資料紀實:HBase知識點集中總結程式設計師大資料
- 20162319 2017-2018-20162319 《程式設計與資料結構》第10周學習總結程式設計資料結構
- Java程式設計師總結出的技術以及學習方法Java程式設計師
- Java程式設計基礎31——MySql資料庫Java程式設計MySql資料庫