How to read an Access database with a JSP

Source: Internet
Author: User
Tags datetime odbc access database
access|js| Data | database


<% @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 ("driver does not exist");
}

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 ())
{
*/////////////////////////Display the contents of the database for debugging programs is used//
int II;
try{
try{
for (Ii=1;; ii++)
Out.print ("
Cloumn "+ii+" is: "+odbcrs.getstring (ii));
}catch (NullPointerException e) {
Out.print ("with empty pointers");
}
}catch (SQLException e) {
}
}
Odbcrs.close ();
Odbcstmt.close ();
Odbcconn.close ();
}catch (SQLException e)
{Out.print (e);
}
%>




Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.