Using Oracle – PB Docs 2019
Using Oracle Contents Supported versions for Oracle Supported Oracle datatypes Basic software components for Oracle Preparing to use the Oracle database Defining the Oracle database interface Using Oracle stored procedures as a data source Using Oracle user-defined types Support for HA event notification ORA driver support for Oracle 11g features About this chapter This chapter…
Creating library entry reports – PB Docs 2019
Creating library entry reports Library entry reports provide information about selected entries in the current target. You can use these reports to get printed documentation about the objects you have created in your target. To create library entry reports Select the library entries you want information about in the List view. Select Entry>Library Item>Print from…
GetContent – PB Docs 2019
GetContent Description Returns all child content of the current PBDOM_DOCUMENT object. Syntax
|
1 |
pbdom_document_name.GetContent(ref pbdom_object pbdom_object_array[ ]) |
Argument Description pbdom_document_name The name of a PBDOM_DOCUMENT object pbdom_object_array The referenced name of an array of PBDOM_OBJECTsthat receives PBDOM_OBJECTs Return value Boolean. Returns true for success and false for failure. Throws EXCEPTION_PBDOM_OBJECT_INVALID_FOR_USE — This PBDOM_OBJECT object is not associated with a…
C0128 Compiler Error – PB Docs 2019
C0128 Compiler Error Message text Only one variable allowed in INTO clause of SelectBlob command. Explanation The INTO clause in a SELECTBLOB statement can contain only one variable:
|
1 2 3 4 5 6 7 8 |
blob lb_a, lb_b selectblob catalog_picture into :lb_a from product; selectblob catalog_picture into :lb_a, :lb_b // generates C0128 from product; |
See Also SELECTBLOB statement in the section called “SELECTBLOB” in PowerScript Reference. Document get from Powerbuilder help Thank you for watching.
Run in debug mode – PB Docs 2019
Run in debug mode Where you are Add breakpoints in application scripts > Run in debug mode Set a watch and a conditional breakpoint Now you run the application in debug mode. You step through the code line by line. About the Step buttons You can use either Step In or Step Over to step…
C0121 Compiler Error – PB Docs 2019
C0121 Compiler Error Message text Invalid indirect property. Document get from Powerbuilder help Thank you for watching.
GetInternalSubset – PB Docs 2019
GetInternalSubset Description Returns the internal subset data of the DOCTYPE. Syntax
|
1 |
pbdom_doctype_name.GetInternalSubset() |
Argument Description pbdom_doctype_name The name of a PBDOM_DOCTYPE object Return value String. See also SetInternalSubset Document get from Powerbuilder help Thank you for watching.
C0187 Compiler Error – PB Docs 2019
C0187 Compiler Error Message text Illegal use of an Arraylist. An Arraylist can be used only to initialize an array. Document get from Powerbuilder help Thank you for watching.
About DataWindow data expressions – PB Docs 2019
About DataWindow data expressions Contents When a DataWindow data expression is evaluated Getting and storing the data from a DataWindow data expression Setting DataWindow data with a DataWindow data expression The Object property of the DataWindow control lets you specify expressions that refer directly to the data of the DataWindow object in the control. This…
C0185 Obsolete Warning – PB Docs 2019
C0185 Obsolete Warning Message text Function function is now obsolete and will be removed in a future release. Document get from Powerbuilder help Thank you for watching.