数据源从数据库加载整个数据?
我已经从 Northwind 数据库(SQLCE)创建了数据源。 然后我将数据源项拖动到表单上并创建网格。
问题是:数据源是否加载数据集中的所有数据?或者当我滚动网格时它可能会加载部分数据?如何确保这一点?
I have created datasource from northwind database (SQLCE).
Then i drag datasource item on form and grid was created.
Question is: Does datasource load all data from dataset? Or maybe it loads part of data when i scroll grid? How to ensure this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自数据库的所有数据都被提取到客户端。要确定情况确实如此,只需检查用于获取数据的 TableAdapter 的 SelectCommand 即可。
另外,我不确定 SQLCE,但 MS SQL Server 允许您使用 SQL Server Profiler 工具跟踪对数据库服务器的请求。
All data from the DB is fetched to the client. To be sure that this is the case, just check the SelectCommand of the TableAdapter used to fetch data.
Also, I'm not sure about SQLCE, but MS SQL server allows you to track requests to the DB server using the SQL Server Profiler tool.