create table test(test1 varchar(20),test2 varchar(20)
然後向這個表寫入一條測試紀錄
那麼現在開始我們的jsp和資料庫之旅吧。
一、jsp連線oracle8/8i/9i資料庫(用thin模式)
testoracle.jsp如下:
string url="jdbc:oracle:thin:@localhost:1521:orcl";
//orcl為你的資料庫的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()) {%>
您的第乙個字段內容為:
您的第二個字段內容為:
stmt.close();
conn.close();
二、jsp連線sql server7.0/2000資料庫
testsqlserver.jsp如下:
string url="jdbc:microsoft: sqlserver://localhost:1433;databasename=pubs";
//pubs為你的資料庫的
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()) {%>
您的第乙個字段內容為:
您的第二個字段內容為:
stmt.close();
conn.close();
三、jsp連線db2資料庫
testdb2.jsp如下:
string url="jdbc: db2://localhost:5000/sample";
//sample為你的資料庫名
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()) {%>
您的第乙個字段內容為:
您的第二個字段內容為:
stmt.close();
conn.close();
四、jsp連線informix資料庫
testinformix.jsp如下:
string url =
"jdbc:informix- sqli:
user=testuser;password=testpassword";
//testdb為你的資料庫名
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()) {%>
您的第乙個字段內容為:
您的第二個字段內容為:
stmt.close();
conn.close();
五、jsp連線sybase資料庫
testmysql.jsp如下:
string url =" jdbc:sybase:tds:localhost:5007/tsdata";
//tsdata為你的資料庫名
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()) {%>
您的第乙個字段內容為:
您的第二個字段內容為:
stmt.close();
conn.close();
六、jsp連線mysql資料庫
testmysql.jsp如下:
string url ="jdbc: mysql://localhost/softforum?user=soft&password=soft1234&useunicode=true&characterencoding=8859_1"
//testdb為你的資料庫名
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()) {%>
您的第乙個字段內容為:
您的第二個字段內容為:
stmt.close();
conn.close();
七、jsp連線postgresql資料庫
testmysql.jsp如下:
string url ="jdbc: postgresql://localhost/soft"
//soft為你的資料庫名
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()) {%>
您的第乙個字段內容為:
您的第二個字段內容為:
stmt.close();
conn.close();
Jsp問題小結
今天,將專案放到伺服器上後,除錯專案時,發現了乙個問題 attribute value request.getparameter searchtype is quoted with which must be escaped when used within the value。源 如下 input...
jsp工程小結
最近,我們臨時接了個jsp專案,將以前的學習計畫稍微的做了點調整。提高班的學習,老師老是強調我們要掌握的是一種學習的能力,這一點在這次的工程開發中得到了非常充分的驗證。jsp,以前我們聽都沒有聽說過。可是,這次卻要用他來做東西。在執行環境與語言都比較陌生的情況下,我們開始了自己的探索過程。我們這邊做...
jsp 連線mysql插入資料亂碼
debug模式,頁面輸入漢字,進來action後看到值也是漢字,就是儲存到資料庫中後顯示為?亂碼為資料庫編碼格式問題,修改連線字串為 private string dburl jdbc mysql localhost 3306 sushe?useunicode true characterencod...