Crystal Reports 与 SQL Server 2005:设置事务隔离级别
有没有办法在 Crystal Reports 查询时指定事务隔离级别 SQL Server 2005 数据库无需采取以下任何措施:
- 将报表的查询封装在存储过程中,该存储过程在查询本身之前执行
SET TRANSACTION ISOLATION LEVEL...
- 在 Crystal Reports 中编写 SQL 查询来执行
SET TRANSACTION ISOLATION LEVEL...
Is there a way to specify the transaction isolation level when Crystal Reports queries a SQL Server 2005 database without resorting to any of the following:
- Encapsulating the report's query in a stored procedure that executes
SET TRANSACTION ISOLATION LEVEL...
before the query itself - Hand-writing the SQL query in Crystal Reports to execute
SET TRANSACTION ISOLATION LEVEL...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能够将其嵌入到 Command 对象中:
此 Command 对象是我在数据库专家中“编写”的查询的补充。
您能详细说明一下设置隔离级别的必要性吗?
I was able to embed this in a Command object:
This Command object was in addition to the query that I 'wrote' in the Database Expert.
Will you elaborate on the necessity of setting the ISOLATION LEVEL?