|
|
| Options | Name | Purpose | |||||
|---|---|---|---|---|---|---|---|
|
|
AddChildrenTo (IContextTree, character, IRequestInfo) |
|
|||||
|
|
AddChildrenTo (IContextTree, IRequestInfo) |
|
|||||
|
|
LOGICAL AddEntity (IDataAdminElement) |
|
|||||
|
|
AddFilterTo (IContextTree, IRequestInfo) |
|
|||||
|
|
AddRowTo (IContextTree, rowid) |
|
|||||
|
|
AddTableTo (IContextTree) |
|
|||||
|
|
AddTableTo (IContextTree, IRequestInfo) |
|
|||||
|
|
AddTreeTo (IContextTree) |
|
|||||
|
|
AddTreeTo (IContextTree, character) |
|
|||||
|
|
AddTreeTo (IContextTree, character, IRequestInfo) |
|
|||||
|
|
AddTreeTo (IContextTree, IDataAdminContext, character, IRequestInfo) |
|
|||||
|
|
AddTreeTo (IContextTree, IDataAdminContext, IRequestInfo) |
|
|||||
|
|
AddTreeTo (IContextTree, IRequestInfo) |
|
|||||
|
|
LOGICAL CanCopy (IDataAdminContext) |
/* subclasses with many to many must override this to check update context
NOTE: this should not check if parent is matching. It should only tell if
passed context can be transferred into my context based on TT and context state (islocal) */ |
|||||
|
|
LOGICAL CanFind (character) |
|
|||||
|
|
LOGICAL CanFind (integer) |
/* end method. */ |
|||||
|
|
LOGICAL CanFindCurrentModel () |
|
|||||
|
|
LOGICAL CanFindCurrentModel (IDataAdminModel) |
|
|||||
|
|
HANDLE CloneQuery (handle) |
/* We may clone this query in order to get row keys from a result without
causing the 'real' query to reposition. This may be used when performing
multi-select operations in the UI, where we don't want to move off the
current record. Note that these actions may be expensive, because of the
cost of creating, opening, etc the query. */ Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
CHARACTER ColumnExpression (character, character, character) |
/** convert expression for QueryString - unknown = keep as is */ |
|||||
|
|
CHARACTER ColumnSortSource (character) |
|
|||||
|
|
CHARACTER ColumnSource (character) |
/* qualify columns for QueryString parsing */ |
|||||
|
|
CHARACTER ColumnValue (character) |
Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
Copy (IDataAdminContext) |
/* subclasses with relational parent overrides this to call CopyFoParent in their context parent*/ |
|||||
|
|
HANDLE CreateAfterQuery (handle) |
|
|||||
|
|
createAndOpenQuery () |
|
|||||
|
|
HANDLE CreateBeforeNavQuery (handle, handle) |
|
|||||
|
|
HANDLE CreateBeforeUpdQuery (handle) |
|
|||||
|
|
CreateQuery () |
Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement CreateRootEntity () |
|
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement CreateRootEntity (character) |
|
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement CreateRootEntity (integer) |
|
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement CreateRootEntity (IRequestInfo) |
|
|||||
|
|
CreateRootRow () |
|
|||||
|
|
CreateRootRow (character) |
|
|||||
|
|
CreateRootRow (integer) |
|
|||||
|
|
CreateRootRow (IRequestInfo) |
|
|||||
|
|
CreateRow (IDataAdminElement) |
|
|||||
|
|
CHARACTER CurrentQuery () |
Return the current query for query manipulation and prepare.
returns the default if not yet prepared.
------------------------------------------------------------------------------*/ Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
DataRefreshed (IFetchResponse) |
|
|||||
|
|
CHARACTER DefaultQuery () |
Return the BaseQuery or build a default query.
------------------------------------------------------------------------------*/ Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
LOGICAL Delete (character) |
|
|||||
|
|
LOGICAL Delete (character[]) |
|
|||||
|
|
LOGICAL Delete (integer) |
|
|||||
|
|
LOGICAL DeleteCurrent () |
|
|||||
|
|
DeleteQuery () |
/* delete the handles */ Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
INTEGER Deserialize (handle, integer, character) |
|
|||||
|
|
Destroy () |
|
|||||
|
|
Export (character, character) |
/*
method protected void ExportQuery(pcfile as char):
define variable hOrigBuffer as handle no-undo.
define variable hExpBuffer as handle no-undo.
define variable hTbl as handle no-undo.
hOrigBuffer = QueryHandle:get-buffer-handle (1).
create temp-table htbl.
/* hidden fields are inherited */
htbl:create-like(hOrigBuffer).
htbl:temp-table-prepare (hOrigBuffer:name).
htbl:default-buffer-handle:serialize-name = SerializeName.
QueryHandle:get-first ().
do while hOrigBuffer:avail:
htbl:default-buffer-handle:buffer-create().
htbl:default-buffer-handle:buffer-copy (hOrigBuffer).
QueryHandle:get-next ().
end.
htbl:default-buffer-handle:write-json ("File",pcfile,yes).
finally:
delete object htbl.
end finally.
end method.
*/ |
|||||
|
|
ExportJSON (character) |
|
|||||
|
|
ExportLastSaved (character) |
|
|||||
|
|
ExportLastSavedTree (character) |
|
|||||
|
|
ExportNormalized (character) |
|
|||||
|
|
LOGICAL Find (character) |
|
|||||
|
|
LOGICAL Find (character[]) |
|
|||||
|
|
LOGICAL Find (integer) |
|
|||||
|
|
LOGICAL Find (IRequestInfo) |
|
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement FindEntity (character) |
|
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement FindEntity (character[]) |
|
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement FindEntity (handle) |
/** find the entity (factory method )
Is considered internal.
@param handle query or buffer that is positioned to the record to be found */ |
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement FindEntity (integer) |
|
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement FindEntity (IRequestInfo) |
/** find in current data (no service request)
NOTE: The RequestInfo is only for support of find on alternate values
it is not stored in the instance and not used for collection filters */ |
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement FindEntityAtRow (integer) |
/** find the entity at row position (factory method )
@param number */ |
|||||
|
|
LOGICAL FindOrigin (rowid) |
/** FindOrigin - find row from origin rowid in row extracted with getchanges
@param rOriginid rowid from row in change dataset */ |
|||||
|
|
ForeignKeyChanged (IRowChange) |
|
|||||
|
|
HANDLE GetBufferHandles () |
Overrides OpenEdge.DataAdmin.Binding.Query.DataAdminQuery:GetBufferHandles () |
|||||
|
|
CHARACTER GetChildJoinFields (character) |
|
|||||
|
|
CHARACTER GetCurrentRowKey () |
Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement GetEntity (character) |
|
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement GetEntity (integer) |
|
|||||
|
|
OpenEdge.DataAdmin.IDataAdminElement GetEntity (IRequestInfo) |
|
|||||
|
|
CHARACTER GetJoinExpression (character) |
|
|||||
|
|
CHARACTER GetJoinFields (character) |
|
|||||
|
|
CHARACTER GetJoinFieldsReversed (character) |
|
|||||
|
|
Progress.Json.ObjectModel.JsonArray GetJsonArray () |
|
|||||
|
|
Progress.Json.ObjectModel.JsonObject GetJSONExport (IContextTree) |
/* optional call back from context tree.
called when parse is complete
return json to export instead of dataset
return unknown to use standard dataset. write-json */ |
|||||
|
|
Progress.Json.ObjectModel.JsonArray GetJsonFieldArray (handle) |
|
|||||
|
|
CHARACTER GetKeyValues (handle) |
|
|||||
|
|
CHARACTER GetKeyWhere (character[]) |
/** get a where expression from the passed extent using Keyfields */ |
|||||
|
|
CHARACTER GetParentJoinFields (character) |
|
|||||
|
|
CHARACTER GetPosition () |
/* order neutral position that is safe if tables changes order
passed back to setPosition
note that one need all rowids when the unique table is not
the first */ Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
ROWID GetQueryRowids (handle) |
/** query rowids (may not be ordered by tables) */ |
|||||
|
|
OpenEdge.DataAdmin.Message.IFetchRequest GetRequest () |
|
|||||
|
|
OpenEdge.DataAdmin.Message.ISaveRequest GetSaveRequest () |
/* @todo */ |
|||||
|
|
HandleParseError (Error, character) |
|
|||||
|
|
LOGICAL HasChanges () |
/* @TODO implement logic for query */ |
|||||
|
|
Import (character, character) |
|
|||||
|
|
Import (JsonObject, character) |
/** @TODO move to IDataAdminModel or make unsupported
need to enure that all instances are realized from IDataAdminModel first.
v11.0.0 some may still use query context
*/ |
|||||
|
|
ImportDelete (character) |
|
|||||
|
|
ImportRow (character, character) |
/* single row import of the entity (flat no tree) */ |
|||||
|
|
ImportRow (character, character[]) |
/* single row import of the entity (flat no tree) */ |
|||||
|
|
ImportRow (character, integer) |
/* single row import of the entity (flat no tree) */ |
|||||
|
|
ImportRowTree (character, character) |
/** */ |
|||||
|
|
ImportRowTree (character, character[]) |
|
|||||
|
|
ImportRowTree (character, integer) |
/** */ |
|||||
|
|
ImportTree (character, character) |
|
|||||
|
|
ImportTree (JsonObject, character) |
|
|||||
|
|
INTEGER IndexOf (character) |
|
|||||
|
|
Progress.Json.ObjectModel.JsonObject JSONRow (handle) |
|
|||||
|
|
MergeChanges (handle) |
|
|||||
|
|
MergeChanges (ISaveRequest) |
|
|||||
|
|
NewContext (IDataAdminModel) |
|
|||||
|
|
OnRowCreated () |
|
|||||
|
|
OnRowDeleted () |
|
|||||
|
|
LOGICAL OpenQuery () |
|
|||||
|
|
LOGICAL PositionToHandle (handle) |
|
|||||
|
|
LOGICAL PositionToRow (integer) |
|
|||||
|
|
LOGICAL Prepare () |
Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
ReadChild (IRow, JSONObject) |
|
|||||
|
|
Progress.Json.ObjectModel.JsonObject ReadJsonRoot (character) |
|
|||||
|
|
RefreshRow (character, character[]) |
|
|||||
|
|
LOGICAL Remove (handle) |
|
|||||
|
|
RemoveQueryBuffers (handle) |
Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
RemoveUpdateBuffer (handle) |
|
|||||
|
|
Reopen () |
|
|||||
|
|
LOGICAL ResetQuery () |
Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
RowCreated () |
/* method protected abstract void TableRefreshed().*/ |
|||||
|
|
RowDeleted () |
|
|||||
|
|
SaveCollection (IDataAdminCollection) |
|
|||||
|
|
SaveRow (IDataAdminElement) |
|
|||||
|
|
SearchContent (character, IDataAdminContext) |
|
|||||
|
|
SearchRequest (IRequestInfo, character, character[], IDataAdminContext) |
/** override in child filtered queries*/ |
|||||
|
|
INTEGER Serialize (handle) |
|
|||||
|
|
LOGICAL SetPosition (character) |
Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
LOGICAL SetPosition (character[]) |
/* set position as returned from GetPosition */ Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
LOGICAL SetPosition (rowid[]) |
/* set position as returned from GetPosition */ Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
LOGICAL SetProperty (rowid, character, character) |
/** set a property
@param rowid the rowid of the tt
@param name property name
@param value value
*/ |
|||||
|
|
HANDLE SingleExtent (handle) |
Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
LOGICAL SynchWithModel () |
|
|||||
|
|
LOGICAL SynchWithModel (IDataAdminModel) |
/** position the query to the row corresponding to the passed model
The Model must define the same table as the first table in the query */ |
|||||
|
|
TableRefreshed (ITableResponse) |
|
|||||
|
|
TransferMatchingRequests (IRequestInfo, IFetchRequest) |
/* cannot use Model - need BaseQuery here */ |
|||||
|
|
TransferMatchingRequests (IRequestInfo[], IFetchRequest) |
|
|||||
|
|
CHARACTER TransformQuery (character) |
|
|||||
|
|
CHARACTER TrimQuery (character) |
/* remove for or preselect from query - duplicated in DataAdminContext - belongs in utility */ Inherited from OpenEdge.DataAdmin.Binding.Query.DataAdminQuery |
|||||
|
|
ValidateChanges (handle) |
|
|||||
|
|
ValidateDeletes (handle, handle) |
|
|||||
|
|
ValidateQueryChanges (handle) |
|
| Options | Name | Purpose | |||||
|---|---|---|---|---|---|---|---|
|
|
AbstractFilteredContext (IDataAdminModel) |
/*** constructors ****************************************/ |
|||||
|
|
AbstractFilteredContext (IDataAdminModel, IRequestInfo) |
|
| Options | Name | Purpose | |||||
|---|---|---|---|---|---|---|---|
|
|
AddedToContext (IDataAdminModel) |
|
|||||
|
|
ContextDeleted () |
|
|||||
|
|
ContextRefreshed (ITableResponse) |
|
|||||
|
|
RowCreated () |
/*** events ****************************************/ |
|||||
|
|
RowDeleted () |
|
|
Top
PUBLIC AddChildrenTo (IContextTree, character, IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
PUBLIC AddChildrenTo (IContextTree, IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL AddEntity (IDataAdminElement)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED AddFilterTo (IContextTree, IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC AddRowTo (IContextTree, rowid)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC AddTableTo (IContextTree)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC AddTableTo (IContextTree, IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC AddTreeTo (IContextTree)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC AddTreeTo (IContextTree, character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC AddTreeTo (IContextTree, character, IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC AddTreeTo (IContextTree, IDataAdminContext, character, IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC AddTreeTo (IContextTree, IDataAdminContext, IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC AddTreeTo (IContextTree, IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL CanCopy (IDataAdminContext)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL CanFind (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL CanFind (integer)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED LOGICAL CanFindCurrentModel ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED LOGICAL CanFindCurrentModel (IDataAdminModel)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED HANDLE CloneQuery (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER ColumnExpression (character, character, character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER ColumnSortSource (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER ColumnSource (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER ColumnValue (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC Copy (IDataAdminContext)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED HANDLE CreateAfterQuery (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED createAndOpenQuery ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED HANDLE CreateBeforeNavQuery (handle, handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED HANDLE CreateBeforeUpdQuery (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED CreateQuery ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement CreateRootEntity ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement CreateRootEntity (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement CreateRootEntity (integer)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement CreateRootEntity (IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CreateRootRow ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CreateRootRow (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CreateRootRow (integer)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CreateRootRow (IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CreateRow (IDataAdminElement)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED CHARACTER CurrentQuery ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC DataRefreshed (IFetchResponse)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER DefaultQuery ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL Delete (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL Delete (character[])
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL Delete (integer)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED LOGICAL DeleteCurrent ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED DeleteQuery ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC INTEGER Deserialize (handle, integer, character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED Destroy ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC Export (character, character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED ExportJSON (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ExportLastSaved (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ExportLastSavedTree (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ExportNormalized (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL Find (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL Find (character[])
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL Find (integer)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL Find (IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement FindEntity (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement FindEntity (character[])
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement FindEntity (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement FindEntity (integer)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement FindEntity (IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement FindEntityAtRow (integer)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL FindOrigin (rowid)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ForeignKeyChanged (IRowChange)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED HANDLE GetBufferHandles ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER GetChildJoinFields (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER GetCurrentRowKey ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement GetEntity (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement GetEntity (integer)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminElement GetEntity (IRequestInfo)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED CHARACTER GetJoinExpression (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER GetJoinFields (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED CHARACTER GetJoinFieldsReversed (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED Progress.Json.ObjectModel.JsonArray GetJsonArray ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC Progress.Json.ObjectModel.JsonObject GetJSONExport (IContextTree)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED Progress.Json.ObjectModel.JsonArray GetJsonFieldArray (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER GetKeyValues (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER GetKeyWhere (character[])
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER GetParentJoinFields (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER GetPosition ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED ROWID GetQueryRowids (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.Message.IFetchRequest GetRequest ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC OpenEdge.DataAdmin.Message.ISaveRequest GetSaveRequest ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PRIVATE HandleParseError (Error, character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL HasChanges ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC Import (character, character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC Import (JsonObject, character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ImportDelete (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ImportRow (character, character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ImportRow (character, character[])
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ImportRow (character, integer)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ImportRowTree (character, character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ImportRowTree (character, character[])
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ImportRowTree (character, integer)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ImportTree (character, character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ImportTree (JsonObject, character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC INTEGER IndexOf (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED Progress.Json.ObjectModel.JsonObject JSONRow (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC MergeChanges (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC MergeChanges (ISaveRequest)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED NewContext (IDataAdminModel)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED OnRowCreated ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED OnRowDeleted ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED LOGICAL OpenQuery ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PRIVATE LOGICAL PositionToHandle (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL PositionToRow (integer)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL Prepare ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ReadChild (IRow, JSONObject)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC Progress.Json.ObjectModel.JsonObject ReadJsonRoot (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC RefreshRow (character, character[])
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL Remove (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED RemoveQueryBuffers (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED RemoveUpdateBuffer (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC Reopen ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED LOGICAL ResetQuery ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED RowCreated ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED RowDeleted ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC SaveCollection (IDataAdminCollection)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC SaveRow (IDataAdminElement)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PRIVATE SearchContent (character, IDataAdminContext)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED SearchRequest (IRequestInfo, character, character[], IDataAdminContext)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC INTEGER Serialize (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL SetPosition (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL SetPosition (character[])
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL SetPosition (rowid[])
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC LOGICAL SetProperty (rowid, character, character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED HANDLE SingleExtent (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED LOGICAL SynchWithModel ()
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED LOGICAL SynchWithModel (IDataAdminModel)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED TableRefreshed (ITableResponse)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC TransferMatchingRequests (IRequestInfo, IFetchRequest)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC TransferMatchingRequests (IRequestInfo[], IFetchRequest)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC CHARACTER TransformQuery (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED CHARACTER TrimQuery (character)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ValidateChanges (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PROTECTED ValidateDeletes (handle, handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC ValidateQueryChanges (handle)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PUBLIC AbstractFilteredContext (IDataAdminModel)
|
||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
PUBLIC AbstractFilteredContext (IDataAdminModel, IRequestInfo)
|
||||||||||||||||
PUBLIC AddedToContext (IDataAdminModel)
|
|||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
PUBLIC ContextDeleted ()
|
|||||||||||
PUBLIC ContextRefreshed (ITableResponse)
|
|||||||||||
PUBLIC RowCreated ()
|
|||||||||||
PUBLIC RowDeleted ()
|
|||||||||||
PUBLIC CHARACTER BaseQuery
|
|||||||||
|---|---|---|---|---|---|---|---|---|---|
PROTECTED CHARACTER BaseQueryTemplate
|
|||||||||
PROTECTED CHARACTER BaseTableExpression
|
|||||||||
PUBLIC LOGICAL CanGenerateCode
|
|||||||||
PUBLIC CHARACTER ContentId
|
|||||||||
PUBLIC INTEGER Count
|
|||||||||
PUBLIC HANDLE DatasetHandle
|
|||||||||
PUBLIC CHARACTER EntityFieldName
|
|||||||||
PUBLIC LOGICAL ExportWithRoot
|
|||||||||
PUBLIC CHARACTER Filter
|
|||||||||
PUBLIC CHARACTER Id
|
|||||||||
PUBLIC LOGICAL IsLocal
|
|||||||||
PUBLIC HANDLE IteratorHandle
|
|||||||||
PROTECTED OpenEdge.DataAdmin.Binding.DataAdminJsonUtil JsonUtil
|
|||||||||
PUBLIC CHARACTER KeyFields
|
|||||||||
PUBLIC HANDLE LastSavedDataset
|
|||||||||
PUBLIC LOGICAL Lazy
|
|||||||||
PUBLIC OpenEdge.DataAdmin.Binding.IDataAdminModel Model
|
|||||||||
PUBLIC CHARACTER Name
|
|||||||||
PUBLIC CHARACTER PhysicalTables
|
|||||||||
PROTECTED HANDLE QueryHandle
|
|||||||||
PROTECTED CHARACTER QueryLock
|
|||||||||
PROTECTED CHARACTER QueryMode
|
|||||||||
PUBLIC LOGICAL ReadOnly
|
|||||||||
PUBLIC OpenEdge.DataAdmin.IRequestInfo RequestInfo
|
|||||||||
PUBLIC ROWID RootId
|
|||||||||
PUBLIC CHARACTER SerializeName
|
|||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminService Service
|
|||||||||
PUBLIC CHARACTER Table
|
|||||||||
PUBLIC HANDLE TableHandle
|
|||||||||
PUBLIC CHARACTER Tables
|
|||||||||
PUBLIC OpenEdge.DataAdmin.IDataAdminService TargetService
|
|||||||||
PUBLIC INT64 Total
|
|||||||||
PUBLIC LOGICAL UseRowid
|
|||||||||
Progress® OpenEdge® Release 12.2.0