本文介绍了如何纠正java中的以下错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
从sql检索数据时发生以下错误。给出合适的解决方案,将数据检索到jtable
while retrieve data from sql occurs the following errors. give the proper solution to retrieve the data to the jtable
E:\indu\Datatran.java:84: cannot find symbol
symbol : variable addElement
location: class java.util.Vector<java.lang.String>
columns_name.addElement=rsmeta.getColumnName(i);
^
E:\indu\Datatran.java:86: cannot find symbol
symbol : method ColumnsIdentifiers(java.util.Vector<java.lang.String>)
location: class javax.swing.table.DefaultTableModel
dtm.ColumnsIdentifiers(columns_name);
^
2 errors
Tool completed with exit code 1
推荐答案
这篇关于如何纠正java中的以下错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!