I have a MS Access database and I would like to use servlet to retrieve information from that. When I input some chinese character on web browser and print the sql using System.out.println(), then I found the the character changed to something like "select * from test where name like...
I wrote this code to connect a MS Access database.
import java.sql.*;
public class Temp {
public static void main(String args[]) {
Connection con;
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con = DriverManager.getConnection...
I have a connection string
strconn="Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & _
Server.MapPath("test.mdb") & ";PWD=1234"
and when I tried to connect to the database then I got a error message : Cannot Find Installable ISAM
so may I ask what is...
What I want to know is, how can I check whether a recordset is closed or not??
This is my first time to write VB code, I guess this might be a very simple question, but I really have no idea how to do it at the moment.........
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.