如何在本地表中存储数据并在 C# 中呈现
我想设置一个表,该表可以:
- 数据保存在用户的计算机上
- 将 在 GUI 中显示数据
- 能够在运行时动态添加行
最好的方法是什么?
DataGridView 或 TableLayoutPanel 还是...?我在使用 SQL Server CE 时遇到了问题,因为我打算将其与 DataGridView 连接,但我对此类工作非常陌生,并且想知道是否有必要使用 SQL 。
I want to setup a table that can:
- Save the data on the user's machine
- Reference & present the data in the GUI
- Capable of adding rows dynamically during runtime
What's the best way to go about this?
DataGridView or TableLayoutPanel or...? I'm having trouble with SQL server CE, as I was going to connect it with the DataGridView, but I'm very new to this kind of work, and wondered if it was even necessary to use SQL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQL CE 应该可以正常工作,但是不行:您不必使用SQL。您只需填充一个 DataSet 并将其保存/加载到磁盘上的文件中即可。或者,您可以使用任何其他可序列化对象树和序列化器,例如 XmlSerializer 等。所有这些都应该与 DataGridView 等标准绑定一起正常工作。但请注意,数据库可以让您更精细地控制数据。这完全取决于这是否有价值,或者单个平面文件是否足够。
SQL CE should work OK, but no: you don't have to use SQL. You could just populate a
DataSet
and save/load that to a file on disk. Or you could use any other serializable object tree and a serializer such asXmlSerializer
etc. All of these should work fine with standard bindings likeDataGridView
. Note, though, that databases get you more granular control over the data. It all depends on whether that is valuable, or if a single flat file will suffice.