C# 클래스 VelocityDBExtensions.Utilities

Currently only used by Database Manager
파일 보기 프로젝트 열기: VelocityDB/VelocityDB

공개 메소드들

메소드 설명
ArrayToString ( Array array, bool isEncodedOidArray, Page page, string prefix = "\t" ) : string

Outputs a string representing an array

ToStringDetails ( DataMember member, object obj, IOptimizedPersistable pObj, Page page, bool skipArrays ) : string

This is a support function for the VelocityDbBrowser. It converts a field into a string.

ToStringDetails ( this pObj, Schema schema, TypeVersion typeVersion, bool skipArrays ) : string

Currently only used by Database Manager

ToStringDetails ( this pObj, SessionBase session, bool skipArrays = true ) : string

Object details as a string

비공개 메소드들

메소드 설명
ToStringDetails ( object obj, Schema schema, Page page, TypeVersion _shape, bool skipArrays ) : string

메소드 상세

ArrayToString() 공개 정적인 메소드

Outputs a string representing an array
public static ArrayToString ( Array array, bool isEncodedOidArray, Page page, string prefix = "\t" ) : string
array System.Array The array to represent as a string
isEncodedOidArray bool True if is encoded as a UInt32 or UInt64
page Page The page containing the array
prefix string A prefix to use before each array element in the output string
리턴 string

ToStringDetails() 공개 정적인 메소드

This is a support function for the VelocityDbBrowser. It converts a field into a string.
public static ToStringDetails ( DataMember member, object obj, IOptimizedPersistable pObj, Page page, bool skipArrays ) : string
member DataMember A field in an object
obj object The object containing the field
pObj IOptimizedPersistable The object containing the field or the owner of the object containing the field
page Page The page of the object
skipArrays bool Option to skip arrays of the object
리턴 string

ToStringDetails() 정적인 공개 메소드

Currently only used by Database Manager
static public ToStringDetails ( this pObj, Schema schema, TypeVersion typeVersion, bool skipArrays ) : string
pObj this Object for which we want detailed to string data
schema Schema The active schema
typeVersion TypeVersion describes the type of the pObj
skipArrays bool if true include array data in generated string
리턴 string

ToStringDetails() 정적인 공개 메소드

Object details as a string
static public ToStringDetails ( this pObj, SessionBase session, bool skipArrays = true ) : string
pObj this
session SessionBase The session managing this object
skipArrays bool Indicates if string should contain detailed array data.
리턴 string