zou xiao fei

Greenhorn
+ Follow
since Oct 26, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by zou xiao fei

CallableStatement
check jdk doc to find how to use it
In fact,you do need type4 driver if you wanna your apps run on any platform.when using odbc,you are restricted in windows, if you insist in doing so,you need something else,just check this: www.jetools.com and that's a type3 driver
and, I suggest you to learn more about the jdbc driver types,I 'm sure you'll choose type4 driver.
[This message has been edited by zou xiao fei (edited November 29, 2001).]
what DBMS are you using?
some big ones support "select...into..." query,you need not use so complex method.
hi:
I think you can try by two steps:
1.don't display chinese characters in jsp,just try java application,using System.out.println to check if it's correctly displayed.
2.if in application it's right,try to modify the meta part of jsp
and use
meta http-equiv="Content-Type" content="text/html; charset=big5"
or you may just try view--encoding in ie

[This message has been edited by zou xiao fei (edited November 19, 2001).]
[This message has been edited by zou xiao fei (edited November 19, 2001).]
protected String DealString(String sBIG5)
{
try
{
sBIG5.trim();
byte[] sReguest = sBIG5.getBytes("8859_1");
return new String(sReguest,"BIG5");
}
catch(Exception e)
{
debugError("Error in dealString"+e.toString ());
return sBIG5;
}
}
hi,
the codes upstair use a type 4 jdbc driver which mean it's fully made of pure java.The way of using jdbc-odbc bridge means access dbs via type 1.
You can know more from sun jdbc page or just search in ranch
hi
try to set it in environment variables
mycomputer--right click--properties--advanced--environment variables,just set it in.I have my javahome here
[This message has been edited by zou xiao fei (edited October 28, 2001).]
hi
If you wanna get an answer about your issue,please inform:
your java source
hi
you can use this software:
JET Proxy JDBC Driver
at http://www.jetools.com/products/JET_Proxy/
------------------