Exemplo n.º 1
0
		public FetchStatement(CursorPositionToken cursorPosition, CursorName cursorName, Sequence<VariableName> destinationVariables) {
			Debug.Assert(cursorPosition != null);
			Debug.Assert(cursorName != null);
			this.cursorPosition = cursorPosition;
			this.cursorName = cursorName;
			this.destinationVariables = destinationVariables.ToList();
		}
Exemplo n.º 2
0
		public OpenStatement(CursorName cursorName): base(cursorName) {}
		public DeclareCursorStatement(CursorName cursorName, CursorDefinition definition): base(definition.Global ? cursorName.AsGlobal() : cursorName) {
			this.definition = definition;
		}
Exemplo n.º 4
0
		public FetchStatement(CursorPositionToken cursorPosition, CursorName cursorName): this(cursorPosition, cursorName, null) {}
Exemplo n.º 5
0
		public CursorName(CursorName name): this(name.Value, true, true) {}
		public DeallocateStatement(CursorName cursorName): base(cursorName) {}
Exemplo n.º 7
0
		protected CursorStatement(CursorName cursorName) {
			Debug.Assert(cursorName != null);
			this.cursorName = cursorName;
		}
Exemplo n.º 8
0
		public CloseStatement(CursorName cursorName): base(cursorName) {}