数据库

本类阅读TOP10

·SQL语句导入导出大全
·SQL Server日期计算
·SQL语句导入导出大全
·SQL to Excel 的应用
·Oracle中password file的作用及说明
·MS SQLServer OLEDB分布式事务无法启动的一般解决方案
·sqlserver2000数据库置疑的解决方法
·一个比较实用的大数据量分页存储过程
·如何在正运行 SQL Server 7.0 的服务器之间传输登录和密码
·SQL中两台服务器间使用连接服务器

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
判断一个数据窗口占用的内存量

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

Determine the memory used by a DataWindow or DataStore

It is often necessary to know how much memory a DataWindow or DataStore is using to prevent an "out of memory" error or to facilitate debugging. When the memory usage is known, processing of data or the retrieval of data can be stopped when a maximum limit is reached.

To determine the amount of virtual memory used by a DataWindow or DataStore, the Storage attribute is used. It can be invoked from either of the two methods below:

Dot Notation
dw_control.Object.DataWindow.Storage

Describe
dw_control.Describe("DataWindow.Storage")

Both cases return a string value in bytes of storage used.

NOTE - dw_control can refer to either a DataWindow or DataStore

An example usage would be:

Canceling a query that uses too much storage. You can check this property in the script for the RetrieveRow event in the DataWindow control and cancel a query if it is consuming too much storage. NOTE - This example will inject performance degradation by increasing the retrieve time.

 

 


相关文章

相关软件