jsp怎么连接mysql_jsp如何连接数据库!
現(xiàn)在有好多初學jsp的網(wǎng)友經(jīng)常會問數(shù)據(jù)庫怎么連接啊,怎么老出錯啊?所以我集中的在這寫篇文章供大家參考,其實這種把數(shù)據(jù)庫邏輯全部放在jsp里未必是好的做法,但是有利于初學者學習,所以我就這樣做了,當大家學到一定程度的時候,可以考慮用MVC的模式開發(fā)。在練習這些代碼的時候,你一定將jdbc的驅(qū)動程序放到服務器的類路徑里,然后要在數(shù)據(jù)庫里建一個表test,有兩個字段比如為test1,test2,可以用下面SQL建
create table test(test1 varchar(20),test2 varchar(20)
然后向這個表寫入一條測試紀錄,那么現(xiàn)在開始我們的jsp和數(shù)據(jù)庫之旅吧。
一、jsp連接Oracle8/8i/9i數(shù)據(jù)庫(用thin模式)
testoracle.jsp如下:
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)容為:
您的第二個字段內(nèi)容為:
stmt.close();
conn.close();
%>
二、jsp連接Sql Server7.0/2000數(shù)據(jù)庫
testsqlserver.jsp如下:
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)容為:
您的第二個字段內(nèi)容為:
stmt.close();
conn.close();
%>
三、jsp連接DB2數(shù)據(jù)庫
testdb2.jsp如下:
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)容為:
您的第二個字段內(nèi)容為:
stmt.close();
conn.close();
%>
(代碼實驗室)
四、jsp連接Informix數(shù)據(jù)庫
testinformix.jsp如下:
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)容為:
您的第二個字段內(nèi)容為:
stmt.close();
conn.close();
%>
五、jsp連接Sybase數(shù)據(jù)庫
testmysql.jsp如下:
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)容為:
您的第二個字段內(nèi)容為:
stmt.close();
conn.close();
%>
六、jsp連接MySQL數(shù)據(jù)庫
testmysql.jsp如下:
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)容為:
您的第二個字段內(nèi)容為:
stmt.close();
conn.close();
%>
七、jsp連接PostgreSQL數(shù)據(jù)庫
testmysql.jsp如下:
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)容為:
您的第二個字段內(nèi)容為:
stmt.close();
conn.close();
%>
(代碼實驗室)
總結
以上是生活随笔為你收集整理的jsp怎么连接mysql_jsp如何连接数据库!的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mysql集群不同步_mysql数据库集
- 下一篇: mysql increment by 2