DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Static Public Member Functions | List of all members
Deveel.Data.Sql.Cursors.CursorScopeExtensions Class Reference

Static Public Member Functions

static void DeclareCursor (this ICursorScope scope, CursorInfo cursorInfo)
 
static Cursor GetCursor (this ICursorScope scope, string cursorName)
 
static bool CursorExists (this ICursorScope scope, string cursorName)
 
static bool DropCursor (this ICursorScope scope, string cursorName)
 

Detailed Description

Definition at line 20 of file CursorScopeExtensions.cs.

Member Function Documentation

static bool Deveel.Data.Sql.Cursors.CursorScopeExtensions.CursorExists ( this ICursorScope  scope,
string  cursorName 
)
inlinestatic

Definition at line 29 of file CursorScopeExtensions.cs.

29  {
30  return scope.CursorManager.CursorExists(cursorName);
31  }
static void Deveel.Data.Sql.Cursors.CursorScopeExtensions.DeclareCursor ( this ICursorScope  scope,
CursorInfo  cursorInfo 
)
inlinestatic

Definition at line 21 of file CursorScopeExtensions.cs.

21  {
22  scope.CursorManager.DeclareCursor(cursorInfo);
23  }
static bool Deveel.Data.Sql.Cursors.CursorScopeExtensions.DropCursor ( this ICursorScope  scope,
string  cursorName 
)
inlinestatic

Definition at line 33 of file CursorScopeExtensions.cs.

33  {
34  return scope.CursorManager.DropCursor(cursorName);
35  }
static Cursor Deveel.Data.Sql.Cursors.CursorScopeExtensions.GetCursor ( this ICursorScope  scope,
string  cursorName 
)
inlinestatic

Definition at line 25 of file CursorScopeExtensions.cs.

25  {
26  return scope.CursorManager.GetCursor(cursorName);
27  }

The documentation for this class was generated from the following file: