コード例 #1
0
 public override void CollectDataFromChildren()
 {
     TransactionBeginOptNode = FindFirstChildNodeByType <TransactionBeginOptNode>();
     TransactionEndOptNode   = FindFirstChildNodeByType <TransactionEndOptNode>()
                               ?? new TransactionEndOptNode()
     {
         TransactionEndType = DataBaseType.TransactionEndType.Commit
     };
     StmtListNode   = FindFirstChildNodeByType <StmtListNode>();
     SqlCommandNode = FindFirstChildNodeByType <SqlCommandNode>();
 }
コード例 #2
0
 public override void CollectDataFromChildren() => SqlCommand = FindFirstChildNodeByType <SqlCommandNode>();