var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-20738293-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script')"/>
jutleo
欢迎走进有风的地方~~
posts - 63,  comments - 279,  trackbacks - 0
异常:

Class.forName(DBDRIVER);
            conn 
= DriverManager.getConnection(DBURL,DBUSERNAME,DBPASSWORD);
            stmt 
= conn.createStatement();
            sql 
= "SELECT name FROM userInformation WHERE id='"+username+"' and password='"+password+"'";
            rs 
= stmt.executeQuery(sql);
            
if(rs.next())
            {
                flag 
= true;
            }
            rs.
close();
            stmt.
close();
            conn.
close();

代码出现类似”
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]对象名 'userInformation’无效。”异常
解决方法:控制台根目录\Microsoft SQL Server\SQL Server 组\(local)(Windows NT)\安全性\登陆修改sa账户默认数据库为你使用的数据库.还可西新建数据库,选择默认数据库为你使用的数据库


异常:
    SQLServer2000默认连接端口为1434端口,有时连接异常时可能是端口被占用的缘故,可以通过修改端口解决,
    解决方法:服务器网络实用工具\常规\启用协议,选择TCP/IP属性修改端口即可,服务器需要重启.

异常:

jsp页面中表单提交的中文数据编码格式要转换成gb2312后,再插入到数据库。 String after=new String(before.getBytes("iso-8859-1"),"gb2312"); before为原始中文数据,after是经过转换后要提交到数据库里的数据。
异常:
    SQLServer 2000中如何设置向Access一样的ID自动编号
出现异常:SQLServer 缺少列数,列数不匹配
选中ID列,设置数据类项为(int/number)列属性里设置标识为是,标识种子为1,表示增量为1

异常:
[Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]将截断字符串或二进制数据。
多半是由于段长度大小的问题,你插入的内容的长度大于该字段定义的长度

异常
[Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket.
检查你的数据库服务器有没有开启,端口是否占用,配置是否正确,其次看看下面的异常处理
"Error establishing socket" exception while connecting to the database
Symptom: while running a windows application that includes massive opening and closing of a connections to database server, "Error establishing socket" exception appears after a short time of execution. 
Cause: This problem is caused by a lack of a reusable sockets on client machine, since each TCP/IP connection stays in the TIME_WAIT state when the connection is being closed. While a connection is in this state, the socket cannot be reused. 
Resolution: do one of the following: 
Increase the port range that is used for anonymous ports to approximately 20,000 ports (for example) by modifying the MaxUserPort registry key (this parameter controls the maximum port number that is used when an application requests any available user port from the system). Windows uses the conventional BSD range of 1024 to 5000 for its anonymous (ephemeral) port range. You can set only the upper bound of the ephemeral port range. To modify the MaxUserPort registry key, follow these steps: 
Start Registry Editor (Regedt32.exe). Please note that you should backup your registry and any important files on your computer before editing the registry. 
Locate the MaxUserPort key in the registry: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters 
On the Edit menu, click Add Value, and then add the following registry value: 
Value Name: MaxUserPort 
Data Type: REG_DWORD 
Value: 65534 (for example) 
Valid Range: 5000-65534 (decimal) 
Default: 0x1388 (5000 decimal) 
Quit Registry Editor. 
Change the timeout on the connections from 240 seconds (the default) to any length from 30 seconds to 300 seconds. Use the TcpTimedWaitDelay registry parameter to change this value. To do this, start Registry Editor (Regedt32.exe), locate the following key in the registry, and then modify the value HKEY_LOCAL_MACHINE\System\CurrectControlSet\services\Tcpip\Parameters (this parameter determines the length of time that a connection stays in the TIME_WAIT state when the connection is being closed. While a connection is in the TIME_WAIT state, the socket pair cannot be reused. For more information, see RFC 793): 
Value Name:TcpTimedWaitDelay 
Value Type: REG_DWORD-time in seconds 
Valid Range: 30-300 (decimal) 
Default: 0xF0 (240 decimal) 

异常:
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Invalid parameter binding(s).

java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]将截断字符串或二进制数据。
posted on 2007-11-28 18:26 凌晨风 阅读(1740) 评论(0)  编辑  收藏 所属分类: Java学习笔记

只有注册用户登录后才能发表评论。


网站导航:
 

<2007年11月>
28293031123
45678910
11121314151617
18192021222324
2526272829301
2345678

常用链接

留言簿(11)

我参与的团队

随笔分类

随笔档案

文章分类

文章档案

新闻分类

新闻档案

收藏夹

围脖

最新随笔

搜索

  •  

最新评论

阅读排行榜

评论排行榜