GetValueTime – PB Docs 2018
GetValueTime Description Gets the time value of the key. If more than one key with the same name exists, then get the value of the first key. Notice that the IgnoreCase property (true by default) determines whether the key name will be matched in a case-sensitive manner. Applies to JSONPackage object Syntax
|
1 |
objectname.GetValueTime ( Key ) |
Argument Description…
GetVersionName – PB Docs 2018
GetVersionName PowerScript function Description Gets complete version information for the current PowerBuilder execution context. A complete version includes a major version, a minor version, and a fix level (such as 8.0.3). Applies to ContextInformation objects Syntax
|
1 |
servicereference.GetVersionName ( name ) |
Argument Description servicereference Reference to the ContextInformation service instance. name String into which the function places the version…
Get objects from Git – PB Docs 2018
Get objects from Git For objects that are changed or added by other developers to the Git source control server but not yet synchronized to your local workspace, you can get these objects from the source control system. To get objects from the Git source control system: Right-click the workspace (that contains the object to…
GetAutomationNativePointer – PB Docs 2018
GetAutomationNativePointer PowerScript function Description Gets a pointer to the OLE object associated with the OLEObject variable. The pointer lets you call OLE functions in an external DLL for the object. Applies to OLEObject Syntax
|
1 |
oleobject.GetAutomationNativePointer ( pointer ) |
Argument Description oleobject The name of an OLEObject variable containing the object for which you want the native pointer. pointer…
GetChildItem – PB Docs 2018
GetChildItem PowerScript function Description Gets the handle of the child item in a JSON parser object. Applies to JSONParser objects Syntax
|
1 |
objectname.GetChildItem ( ParentItemHandle, Index ) |
Argument Description objectname The name of the JSONParser object whose item handle you want to obtain. ParentItemHandle A long whose value is the handle of the parent item of JsonObjectItem and JsonArrayItem type….
GarbageCollect – PB Docs 2018
GarbageCollect PowerScript function Description Forces immediate garbage collection. Syntax
|
1 |
GarbageCollect ( ) |
Return value None Usage Forces garbage collection to occur immediately. PowerBuilder makes a pass to identify unused objects, including those with circular references, then deletes unused objects and classes. Examples This statement initiates garbage collection:
|
1 |
GarbageCollect() |
See also GarbageCollectGetTimeLimit GarbageCollectSetTimeLimit Document get from Powerbuilder help…
GetDynamicDate – PB Docs 2018
GetDynamicDate PowerScript function Description Obtains data of type Date from the DynamicDescriptionArea after you have executed a dynamic SQL statement. Restriction You can use this function only after executing Format 4 dynamic SQL statements. Syntax
|
1 |
DynamicDescriptionArea.GetDynamicDate ( index ) |
Argument Description DynamicDescriptionArea The name of the DynamicDescriptionArea, usually SQLDA. index An integer identifying the output parameter descriptor from which you…
GetMajorVersion – PB Docs 2018
GetMajorVersion PowerScript function Description Returns the major version for the current PowerBuilder execution context. For example, at maintenance level 11.5.1 the major version is 11. Applies to ContextInformation objects Syntax
|
1 |
servicereference.GetMajorVersion ( majorversion ) |
Argument Description servicereference Reference to the ContextInformation service instance. majorversion Integer into which the function places the major version. This argument is passed by…
GetItemBoolean – PB Docs 2018
GetItemBoolean PowerScript function Contents Syntax 1 Syntax 2 Document get from Powerbuilder help Thank you for watching.
EnableCommit – PB Docs 2018
EnableCommit PowerScript function Description Declares that a component’s work may be incomplete but its transaction updates are consistent and can be committed. Applies to TransactionServer objects Syntax
|
1 |
transactionserver.EnableCommit (  ) |
Argument Description transactionserver Reference to the TransactionServer service instance Return value Integer. Returns 1 if it succeeds and -1 if an error occurs. Usage The EnableCommit function indicates…