zhizhuo

           

          JDBC 數(shù) 據(jù) 庫 連 接 大 全

          ?

          ?JDBC 數(shù) 據(jù) 庫 連 接 大 全?
          ??
          一、jsp連接Oracle8/8i/9i數(shù)據(jù)庫(用thin模式)?
          testoracle.jsp如下:

          <%@ page contentType="text/html;charset=gb2312"%>?

          <%@ page import="java.sql.*"%>

          <html>?

          <body>?

          <%Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();

          String url="jdbc:oracle:thin:@localhost:1521:orcl";

          //orcl為你的數(shù)據(jù)庫的SID?

          String user="scott";?

          String password="tiger";?

          Connection conn= DriverManager.getConnection(url,user,password);

          Statement stmt=conn.createStatement

          (ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);?

          String sql="select * from test";?

          ResultSet rs=stmt.executeQuery(sql);

          while(rs.next()) {%>?

          您的第一個字段內(nèi)容為:<%=rs.getString(1)%>?

          您的第二個字段內(nèi)容為:<%=rs.getString(2)%>?

          <%}%>?

          <%out.print("數(shù)據(jù)庫操作成功,恭喜你");%>?

          <%rs.close();?

          stmt.close();?

          conn.close();?

          %>?

          </body>?

          </html>?

          ??

          二、jsp連接Sql Server7.0/2000數(shù)據(jù)庫?
          testsqlserver.jsp如下:

          <%@ page contentType="text/html;charset=gb2312"%>?

          <%@ page import="java.sql.*"%>?

          <html>?

          <body>?

          <%Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();

          String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=pubs";?

          //pubs為你的數(shù)據(jù)庫的?

          String user="sa";?

          String password="";?

          Connection conn= DriverManager.getConnection(url,user,password);?

          Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);?

          String sql="select * from test";?

          ResultSet rs=stmt.executeQuery(sql);

          while(rs.next()) {%>?

          您的第一個字段內(nèi)容為:<%=rs.getString(1)%>?

          您的第二個字段內(nèi)容為:<%=rs.getString(2)%>?

          <%}%>?

          <%out.print("數(shù)據(jù)庫操作成功,恭喜你");%>?

          <%rs.close();?

          stmt.close();?

          conn.close();?

          %>?

          </body>?

          </html>?
          ??

          三、jsp連接DB2數(shù)據(jù)庫?
          testdb2.jsp如下:

          <%@ page contentType="text/html;charset=gb2312"%>

          <%@ page import="java.sql.*"%>?

          <html>?

          <body>?

          <%Class.forName("com.ibm.db2.jdbc.app.DB2Driver ").newInstance();?

          String url="jdbc:db2://localhost:5000/sample";?

          //sample為你的數(shù)據(jù)庫名?

          String user="admin";

          String password="";?

          Connection conn= DriverManager.getConnection(url,user,password);?

          Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);

          String sql="select * from test";?

          ResultSet rs=stmt.executeQuery(sql);?

          while(rs.next()) {%>?

          您的第一個字段內(nèi)容為:<%=rs.getString(1)%>

          您的第二個字段內(nèi)容為:<%=rs.getString(2)%>?

          <%}%>?

          <%out.print("數(shù)據(jù)庫操作成功,恭喜你");%>?

          <%rs.close();?

          stmt.close();?

          conn.close();?

          %>?

          </body>?

          </html>?

          ??

          四、jsp連接Informix數(shù)據(jù)庫?
          testinformix.jsp如下:

          <%@ page contentType="text/html;charset=gb2312"%>

          <%@ page import="java.sql.*"%>?

          <html>?

          <body>?

          <%Class.forName("com.informix.jdbc.IfxDriver").newInstance();

          String url = "jdbc:informix-sqli://123.45.67.89:1533/testDB:INFORMIXSERVER=myserver;?

          user=testuser;password=testpassword";?

          //testDB為你的數(shù)據(jù)庫名?

          Connection conn= DriverManager.getConnection(url);?

          Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);?

          String sql="select * from test";

          ResultSet rs=stmt.executeQuery(sql);

          while(rs.next()) {%>?

          您的第一個字段內(nèi)容為:<%=rs.getString(1)%>

          您的第二個字段內(nèi)容為:<%=rs.getString(2)%>

          <%}%>?

          <%out.print("數(shù)據(jù)庫操作成功,恭喜你");%>?

          <%rs.close();?

          stmt.close();

          conn.close();?

          %>?

          </body>?

          </html>?

          ??

          五、jsp連接Sybase數(shù)據(jù)庫
          testmysql.jsp如下:?

          <%@ page contentType="text/html;charset=gb2312"%>

          <%@ page import="java.sql.*"%>?

          <html>?

          <body>?

          <%Class.forName("com.sybase.jdbc.SybDriver").newInstance();?

          String url =" jdbc:sybase:Tds:localhost:5007/tsdata";

          //tsdata為你的數(shù)據(jù)庫名?

          Properties sysProps = System.getProperties();?

          SysProps.put("user","userid");?

          SysProps.put("password","user_password");

          Connection conn= DriverManager.getConnection(url, SysProps);

          Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);?

          String sql="select * from test";?

          ResultSet rs=stmt.executeQuery(sql);

          while(rs.next()) {%>?

          您的第一個字段內(nèi)容為:<%=rs.getString(1)%>?

          您的第二個字段內(nèi)容為:<%=rs.getString(2)%>?

          <%}%>?

          <%out.print("數(shù)據(jù)庫操作成功,恭喜你");%>?

          <%rs.close();?

          stmt.close();?

          conn.close();?

          %>?

          </body>?

          </html>

          ??

          六、jsp連接MySQL數(shù)據(jù)庫
          testmysql.jsp如下:?

          <%@ page contentType="text/html;charset=gb2312"%>?

          <%@ page import="java.sql.*"%>?

          <html>?

          <body>?

          <%Class.forName("org.gjt.mm.mysql.Driver").newInstance();?

          String url ="jdbc:mysql://localhost/softforum?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1";

          //testDB為你的數(shù)據(jù)庫名?

          Connection conn= DriverManager.getConnection(url);

          Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);?

          String sql="select * from test";?

          ResultSet rs=stmt.executeQuery(sql);?

          while(rs.next()) {%>?

          您的第一個字段內(nèi)容為:<%=rs.getString(1)%>?

          您的第二個字段內(nèi)容為:<%=rs.getString(2)%>

          <%}%>?

          <%out.print("數(shù)據(jù)庫操作成功,恭喜你");%>?

          <%rs.close();?

          stmt.close();?

          conn.close();?

          %>?

          </body>

          </html>?

          ??

          七、jsp連接PostgreSQL數(shù)據(jù)庫?
          testmysql.jsp如下:?

          <%@ page contentType="text/html;charset=gb2312"%>?

          <%@ page import="java.sql.*"%>?

          <html>?

          <body>?

          <%Class.forName("org.postgresql.Driver").newInstance();?

          String url ="jdbc:postgresql://localhost/soft";?

          //soft為你的數(shù)據(jù)庫名?

          String user="myuser";

          String password="mypassword";?

          Connection conn= DriverManager.getConnection(url,user,password);

          Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);?

          String sql="select * from test";?

          ResultSet rs=stmt.executeQuery(sql);?

          while(rs.next()) {%>?

          您的第一個字段內(nèi)容為:<%=rs.getString(1)%>?

          您的第二個字段內(nèi)容為:<%=rs.getString(2)%>?

          <%}%>?

          <%out.print("數(shù)據(jù)庫操作成功,恭喜你");%>?

          <%rs.close();?

          stmt.close();?

          conn.close();?

          %>?

          </body>?

          </html>?
          ?
          ?

          posted on 2006-05-23 09:47 執(zhí)著 閱讀(893) 評論(1)  編輯  收藏

          評論

          # re: JDBC 數(shù) 據(jù) 庫 連 接 大 全 [未登錄] 2009-02-16 18:16 lei

          謝謝,共享。收藏  回復(fù)  更多評論   


          只有注冊用戶登錄后才能發(fā)表評論。


          網(wǎng)站導(dǎo)航:
           

          導(dǎo)航

          統(tǒng)計

          常用鏈接

          留言簿(1)

          我參與的團(tuán)隊

          隨筆檔案

          文章檔案

          搜索

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 新乡县| 涞水县| 仁寿县| 西充县| 通榆县| 大田县| 安图县| 贵溪市| 蕉岭县| 黑水县| 抚州市| 洪湖市| 济宁市| 吉林市| 莫力| 城固县| 泸定县| 淳安县| 北安市| 江华| 云梦县| 教育| 兴山县| 大荔县| 海门市| 仙游县| 綦江县| 千阳县| 武清区| 新乡市| 平南县| 皋兰县| 延川县| 会理县| 雅江县| 郯城县| 集安市| 南木林县| 鄂托克前旗| 康马县| 常宁市|