连接到数据库的程序的源代码

连接到数据库的程序的源代码

ID:38427985

大小:67.00 KB

页数:8页

时间:2019-06-12

连接到数据库的程序的源代码_第1页
连接到数据库的程序的源代码_第2页
连接到数据库的程序的源代码_第3页
连接到数据库的程序的源代码_第4页
连接到数据库的程序的源代码_第5页
资源描述:

《连接到数据库的程序的源代码》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、这个程序是连接到数据库的一个程序,主要功能是在上方的文本输入框中输入查询语句,实现从数据库中查询的功能,还可以在下方的过滤文本框中输入要过滤的文本,实现过滤查询结果的功能。现在的问题是编译能够成功,但是运行时会报错。错误信息及源代码在下面给出,请问原因为何?多谢指教。//这是ResultSetTableModel类,用作JTable的构造函数的参数。packageResultSetTableModel;importjava.sql.*;importjavax.swing.table.*;publicclassResultSetTableModelextendsA

2、bstractTableModel{privateConnectionconnection;privateStatementstatement;privateResultSetresultset;privateResultSetMetaDatametadata;privateintnumberofrows;privatebooleanconnectedtodatabase=false;publicResultSetTableModel(Stringurl,Stringusername,Stringpassword,Stringquery){try{connect

3、ion=DriverManager.getConnection(url,username,password);statement=connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);connectedtodatabase=true;setQuery(query);}catch(SQLExceptionsqlexception){System.out.println("erroronconnectingtodatabase");}}publ

4、icvoidsetQuery(Stringquery)throwsSQLException,IllegalStateException{if(!connectedtodatabase){thrownewIllegalStateException("Notconnectedtodatabase");}resultset=statement.executeQuery(query);metadata=resultset.getMetaData();}publicvoiddisconnectFromDatabase(){if(connectedtodatabase){t

5、ry{resultset.close();statement.close();connection.close();}catch(SQLExceptionsqlException){sqlException.printStackTrace();}finally{connectedtodatabase=false;}}}publicintgetColumnCount()throwsIllegalStateException{intcurrentrow=1;if(!connectedtodatabase){thrownewIllegalStateException(

6、"Notconnectedtodatabase");}try{resultset.last();currentrow=resultset.getRow();}catch(SQLExceptionsqlexception){sqlexception.printStackTrace();}returncurrentrow;}publicClassgetColumnClass(intcolumn)throwsIllegalStateException{if(!connectedtodatabase){thrownewIllegalStateException("Not

7、connectedtodatabase");}try{StringclassName=metadata.getColumnClassName(column+1);returnClass.forName(className);}catch(Exceptionexception){exception.printStackTrace();}finally{returnObject.class;}}publicStringgetColumnName(intcolumn)throwsIllegalStateException{Stringcolumnname="null"

8、;if(!connect

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。