当前位置:  技术问答>java相关

Connection类的问题

    来源: 互联网  发布时间:2015-01-03

    本文导语:  Connection.preparedStatement(sql, type, concur); 当type = ResultSet.TYPE_FORWARD_ONLY时, ResultSet.getString()返回值为正常的汉字,设type = ResultSet.TYPE_SCROLL_SENSITIVE或TYPE_SCROLL_INSENSITIVE时,返回值为0x3a4fe32c4391。 请教如何解决。谢了先...

Connection.preparedStatement(sql, type, concur);
当type = ResultSet.TYPE_FORWARD_ONLY时, ResultSet.getString()返回值为正常的汉字,设type = ResultSet.TYPE_SCROLL_SENSITIVE或TYPE_SCROLL_INSENSITIVE时,返回值为0x3a4fe32c4391。

请教如何解决。谢了先!


|
I didn't find the problem you said.
This is the test application:

package beans;
import java.sql.*;
import java.math.*;
public class TestConn {

    public static void main(String[] args) {

        try {
         DriverManager.registerDriver(
             new oracle.jdbc.driver.OracleDriver());
         Connection conn = DriverManager.getConnection(
                          "jdbc:oracle:thin:@192.168.0.15:1521:ec",
                          "intranet", "intranet");

  //       Statement stmt = conn.createStatement();
  //       Statement stmt = conn.createStatement(
  //                                    ResultSet.TYPE_SCROLL_INSENSITIVE,
  //                                    ResultSet.CONCUR_UPDATABLE);  
  //      ResultSet rs = stmt.executeQuery("select subject from jivemessage");
  
         PreparedStatement pstmt = conn.prepareStatement("select subject from jivemessage",
                                       ResultSet.TYPE_SCROLL_SENSITIVE,
                                       ResultSet.CONCUR_UPDATABLE);
         ResultSet rs = pstmt.executeQuery();
         while (rs.next()) {
             String subject = rs.getString(1);
             System.out.println(subject);
         }
        }
        catch (SQLException se) {
        }
    }
}

|
我也没发现

|
可能要设置一下系统编码为gb2312吧

    
 
 

您可能感兴趣的文章:

  • Websphere下的数据库连接,connection pool问题
  • 求教connection的问题!谢谢
  • Socket编程connection refused问题 iis7站长之家
  • 求救:Linux连接总是报:connection reset by peer问题!!!
  • 关于网络编程中SOCKET CONNECTION释放的问题 -100 cents
  • Connection reset by peer: JVM_recv in socket input stream read这个问题到底怎么解决??
  • 关于连接池 connection pool!!!!!!(37分的问题,不够还可以加分!要多少分可以自己提)
  • 急!在线等待~~在FTP的时候怎么会出现这个问题? Can't build data connection: Address already in use.
  • MySQL远程连接丢失问题解决方法(Lost connection to MySQL server)
  • 一个connection pool的问题,急
  • 深入android中The connection to adb is down的问题以及解决方法
  • Jedis出现connection timeout问题解决方法(JedisPool连接池使用实例)
  • Socket编程connection refused问题
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java命名空间java.sql接口connection的类成员方法: gettransactionisolation定义及介绍
  • 如何得到一个CONNECTION
  • java命名空间java.sql接口connection的类成员方法: settransactionisolation定义及介绍
  • RD Connection Manager
  • java命名空间java.sql接口connection的类成员方法: clearwarnings定义及介绍
  • 请问WebLogic6.0中Connection Pools怎么配置?
  • java命名空间java.sql接口connection的类成员方法: isreadonly定义及介绍
  • connection refused 及 showmount 错误
  • java命名空间java.sql接口connection的类成员方法: getautocommit定义及介绍
  • Lost connection to MySQL server during query的解决
  • java命名空间java.sql接口connection的类成员方法: getmetadata定义及介绍
  • 为什么我一直出现connection refused!
  • java命名空间java.sql接口connection的类成员方法: rollback定义及介绍
  • linux里怎么用talk呀?总是说“connection refused”
  • java命名空间java.sql接口connection的类成员方法: commit定义及介绍
  • 425 Failed to establish connection
  • java命名空间java.sql接口connection的类成员方法: close定义及介绍
  • samba connection failed
  • java命名空间java.sql接口connection的类成员方法: isclosed定义及介绍
  • [紧急求助]socket在read时提示Connection reset by peer错误
  • java命名空间java.sql接口connection的类成员方法: setcatalog定义及介绍
  • 下面这个程序编译不通,怎么回事?提示public Connection { 出错!


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3