程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Access數據庫 >> 關於Access數據庫 >> 用jsp如何讀取access數據庫

用jsp如何讀取access數據庫

編輯:關於Access數據庫
<%@page import="Java.sql.*"
import ="Java.util.*"
import ="Java.io.*"
import="Java.text.*"
contenttype="text/Html; charset=gb2312"
buffer="20kb"
%><%! int all,i,m_count;
string odbcquery;
connection odbcconn;
statement odbcstmt;
resultset odbcrs;
string username,title,content,work,email,url,time,date;
string datetime;
%>
<%
try{
class.forname("sun.jdbc.odbc.jdbcodbcdriver");
}catch (classnotfoundexception e)
{ out.print ("驅動程序不存在");
} try{
odbcconn = drivermanager.getconnection("jdbc:odbc:db1");
odbcstmt = odbcconn.createstatement(); odbcquery="select * from book where datetime>2001-4-26 order by datetime desc";
odbcrs=odbcstmt.executequery(odbcquery);
int i=0;
while (i<130) odbcrs.next();
while (odbcrs.next())
{
//*/////////////////////////顯示的內容用於調試程序是用//
int ii;
try{
try{
for (ii=1;;ii++)
out.print ("
cloumn "+ii+" is: "+odbcrs.getstring(ii));
}catch (nullpointerexception e) {
out.print ("有空的指針");
}
}catch (sqlexception e){
}
}
odbcrs.close();
odbcstmt.close();
odbcconn.close();
}catch (sqlexception e)
{ out.print (e);
}
%>   
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved