哪里可以找到没有行数限制的 LibreOffice Base 模块?

Where to find the Base module of LibreOffice that has no row limit?

我有一个包含一千万行的文件。我想使用 OpenOffice Calc 打开它,但 OpenOffice Calc 3.3.3 有大约一百万行的限制。

如果你follow this link,答案提到 LibreOffice 的 Base 模块有 NO ROW LIMIT

LibreOffice Base 可以使用 Text 个文件作为数据源。文档在这里:https://help.libreoffice.org/Common/Text_File_Connection.

为了对此进行测试,以下 python 脚本会生成一个包含一千万行的文本文件。

with open("datasource.txt", 'w') as f:
    f.write("id,name\n")
    TEN_MILLION = 10000000
    for id_number in range(TEN_MILLION):
        f.write("%d,abc\n" % id_number)

通过转到 LibreOffice 菜单中的文件 -> 新建 -> 数据库打开 Base。然后连接到现有数据库。

现在"datasource"table打开就可以看到