Deveel.Data.Sql.Statements.FetchIntoStatement.FetchIntoStatement C# (CSharp) Méthode

FetchIntoStatement() private méthode

private FetchIntoStatement ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
Résultat System
        private FetchIntoStatement(SerializationInfo info, StreamingContext context)
            : base(info, context)
        {
            CursorName = info.GetString("Cursor");
            Direction = (FetchDirection) info.GetInt32("Direction");
            OffsetExpression = (SqlExpression) info.GetValue("Offset", typeof (SqlExpression));
            ReferenceExpression = (SqlExpression) info.GetValue("Reference", typeof (SqlExpression));
        }

Same methods

FetchIntoStatement::FetchIntoStatement ( string cursorName, FetchDirection direction, SqlExpression offsetExpression, SqlExpression referenceExpression ) : System