如何使用 Jackcess 选择列



我是Jackcess的新手。我必须在 Jackcess 的帮助下从数据库中选择一列,然后将该列的值放在数组中。

我怎样才能在Jackcess的帮助下做到这一点?

以下代码检索 [Inventory] 表中每一行的 [序列号] 字段,并将其存储在String[]数组中:

import java.io.File;
import java.io.IOException;
import com.healthmarketscience.jackcess.*;
public class jackcessTest {
    public static void main(String[] args) {
        try {
            Table table = DatabaseBuilder.open(new File("C:\Users\Public\Database1.accdb")).getTable("Inventory");
            int numRows = table.getRowCount();
            String[] strArray = new String[numRows];
            int index = 0;
            for (Row row : table) {
                strArray[index++] = row.get("SerialNumber").toString();
            }
            System.out.println("The first item in the array is: " + strArray[0]);
            System.out.println("The last item in the array is: " + strArray[numRows - 1]);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

您可以使用此库:https://github.com/amgohan/jackcess-orm 基于JPA的ORM与jackcess兼容。

相关内容

  • 没有找到相关文章

最新更新