Deveel.Data.Sql.Statements.UpdateFromCursorStatement.UpdateFromCursorStatement C# (CSharp) 메소드

UpdateFromCursorStatement() 공개 메소드

public UpdateFromCursorStatement ( ObjectName tableName, string cursorName ) : System
tableName ObjectName
cursorName string
리턴 System
        public UpdateFromCursorStatement(ObjectName tableName, string cursorName)
        {
            if (tableName == null)
                throw new ArgumentNullException("tableName");
            if (String.IsNullOrEmpty(cursorName))
                throw new ArgumentNullException("cursorName");

            TableName = tableName;
            CursorName = cursorName;
        }