'?'
Inheritance: PrimaryExpression
Example #1
0
 public Limit(Number offset, ParamMarker sizeP)
 {
     if (offset == null)
     {
         throw new ArgumentException();
     }
     if (sizeP == null)
     {
         throw new ArgumentException();
     }
     this.offset = offset;
     size = null;
     offsetP = null;
     this.sizeP = sizeP;
 }
Example #2
0
 public Limit(ParamMarker offsetP, ParamMarker sizeP)
 {
     if (offsetP == null)
     {
         throw new ArgumentException();
     }
     if (sizeP == null)
     {
         throw new ArgumentException();
     }
     offset = null;
     size = null;
     this.offsetP = offsetP;
     this.sizeP = sizeP;
 }
Example #3
0
 public Limit(Number offset, Number size)
 {
     if (offset == null)
     {
         throw new ArgumentException();
     }
     if (size == null)
     {
         throw new ArgumentException();
     }
     this.offset = offset;
     this.size = size;
     offsetP = null;
     sizeP = null;
 }
Example #4
0
 protected virtual ParamMarker CreateParam(int index)
 {
     var param = new ParamMarker(index);
     param.SetCacheEvalRst(cacheEvalRst);
     return param;
 }
 public virtual void Visit(ParamMarker node)
 {
 }