コード例 #1
0
ファイル: FbConnectionInternal.cs プロジェクト: raj581/Marvin
        public void TransactionUpdated()
        {
            for (int i = 0; i < this.PreparedCommands.Count; i++)
            {
                FbCommand command = (FbCommand)this.PreparedCommands[i];

                if (command.Transaction != null)
                {
                    command.CloseReader();
                    command.Transaction = null;
                }
            }
        }