Connection Information

To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host.

Connection Type

Powerbuilder Documentation 2017 – Page 547 – PowerBuilder Library

Powerbuilder Documentation 2017

Powerbuilder Documentation 2017

Example 1 (using OAuthClient) (recommended) – PB Docs 2017

Example 1 (using OAuthClient) (recommended)

Document get from Powerbuilder help Thank you for watching.

Using cascaded calling and return values – PB Docs 2017

Using cascaded calling and return values PowerBuilder dot notation allows you to chain together several object function or event calls. The return value of the function or event becomes the object for the following call. This syntax shows the relationship between the return values of three cascaded function calls:

Disadvantage of cascaded calls When…

Using Embedded SQL – PB Docs 2017

Using Embedded SQL This part describes how to use embedded SQL when accessing a database with that interface in a PowerBuilder application. Contents Using Embedded SQL with ODBC ODBC SQL Support ODBC Name qualification ODBC SQL functions ODBC Using escape clauses ODBC Transaction management statements ODBC Using CONNECT, DISCONNECT, COMMIT, and ROLLBACK ODBC Performance and…

Syntax 6: For opening an OLE storage member into a storage – PB Docs 2017

Syntax 6: For opening an OLE storage member into a storage Description Opens a member of an open OLE storage and loads it into another OLE storage object in memory. Applies to OLE storage objects Syntax

Argument Description olestorage The name of a object variable of type OLEStorage into which you want to load…

Using Open Client directory services – PB Docs 2017

Using Open Client directory services Contents What are Open Client directory services? Requirements for using Open Client directory services Specifying the server name with Open Client directory services Directory services DBParm parameters The Adaptive Server interfaces provide several DBParm parameters that support Open Client 11.1.x or later network-based directory services in your application. If you are using…

Using return values – PB Docs 2017

Using return values Contents Functions Events Using cascaded calling and return values You can use return values of functions and events. Document get from Powerbuilder help Thank you for watching.

Oracle Cursor statements – PB Docs 2017

Oracle Cursor statements In embedded SQL, statements that retrieve data and statements that update data can both involve cursors. Retrieval statements The retrieval statements that involve cursors are: DECLARE cursor_name CURSOR FOR … OPEN cursor_name FETCH cursor_name INTO … CLOSE cursor_name Update statements The update statements that involve cursors are: UPDATE … WHERE CURRENT OF…

SELECTBLOB – PB Docs 2017

SELECTBLOB SQL statement Description Selects a single blob column in a row in the table specified in RestOfSelectStatement. Syntax

Parameter Description RestOfSelectStatement The rest of the SELECT statement (the INTO, FROM, and WHERE clauses). TransactionObject The name of the transaction object that identifies the database containing the table. This clause is required only for transaction…

ODBC SQL functions – PB Docs 2017

ODBC SQL functions Contents DBHandle In SQL statements, you can use any function that your backend DBMS supports (such as aggregate or mathematical functions). For example, if your DBMS supports the function Sum, you can use the function Sum in a SELECT statement:

Calling ODBC functions While PowerBuilder provides access to a large percentage…

Standard datatypes – PB Docs 2017

Standard datatypes The datatypes The standard datatypes in PowerBuilder are the familiar datatypes that are used in many programming languages, including char, integer, decimal, long, and string. In PowerScript, you use these datatypes to declare variables or arrays. These are the standard PowerScript datatypes, followed by a description of each: Blob LongLong Boolean Long Byte…