Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表中有 100 行数据的 Mysql 数据库。我创建了一个在 JList 中显示数据的 Java 应用程序(Swing),但我想知道如果我加载了数千行数据,应用程序的性能会降低吗?
如果是这样,显示数据或查询数据的最佳方式是什么?
提前致谢。
您想对数据进行分页,这在 MySQL 中很容易做到。只需在查询中使用 LIMIT 和 OFFSET 即可。