有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

Beanutils的ResultSetDynaSet中有java Bug吗?

我最近发现,JDBC有两种方式来命名列,即“按名称”和“按标签”,而显然“按标签”方式是默认的

实际上,列名的概念似乎让我感到困惑。可能不仅对我来说,对Beanutils autors来说也是如此,因为默认情况下,Beanutils autors按名称访问字段(导致无法使用列别名访问任何查询)。同时they have property ^{},这没有效果,因为它是在内省之后设置的

下面是示例代码

import org.apache.commons.beanutils.*;

import java.lang.reflect.InvocationTargetException;
import java.sql.*;
import java.util.ArrayList;
import java.util.Iterator;

public class ResultSetIteratorAttempt {


   public static void main(String[] args) throws ClassNotFoundException, SQLException, InstantiationException, IllegalAccessException, InvocationTargetException, NoSuchMethodException {

      Connection conn = null;
      Statement stmt = null;

      Class.forName("com.mysql.jdbc.Driver");

      conn = DriverManager.getConnection("jdbc:mysql://localhost/sample","java","");

      stmt = conn.createStatement();

      ResultSet rs = stmt.executeQuery("SELECT Id as NM1, Name as NM2 FROM DayOfWeek;");

      ArrayList results = new ArrayList(); // To hold copied list

      ResultSetDynaClass rsdc = new ResultSetDynaClass(rs);
      rsdc.setUseColumnLabel(true);

      DynaProperty[] properties = rsdc.getDynaProperties();
      String propertyName = "";
      for(int i=0; i<properties.length; ++i) {
         propertyName = properties[i].getName();
         System.out.println(String.format("Property #%d is %s", i, propertyName));
      }

      Iterator rows = rsdc.iterator();
      DynaBean row;
      while (rows.hasNext()) {
         row = (DynaBean) rows.next();
         System.out.println(String.format("Row is %s", row.get(propertyName)));
      }

   }

}

我说得对吗

UDPATE

mysql> select * from dayofweek;
+----+-----------+
| Id | Name      |
+----+-----------+
|  5 | Friday    |
|  1 | Monday    |
|  6 | Saturday  |
|  7 | Sunday    |
|  4 | Thursday  |
|  2 | Tuesday   |
|  3 | Wednesday |
+----+-----------+
7 rows in set (0.00 sec)

共 (1) 个答案