欢迎来到天天文库
浏览记录
ID:38427985
大小:67.00 KB
页数:8页
时间:2019-06-12
《连接到数据库的程序的源代码》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
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
此文档下载收益归作者所有