Configuring the SQL Server database server – PB Docs 2022
Configuring the SQL Server database server To enable the protocol on the SQL Server database server (using SQL Server 2019 on Windows Server 2019 64-bit as an example): Open SQL Server 2019 Configuration Manager from the Windows Start menu > SQL Server 2019 > SQL Server 2019 Configuration Manager. Select the instance to be connected…
Syntax 1: For RibbonMenu control – PB Docs 2022
Syntax 1: For RibbonMenu control Description Determines the total number of items in a ribbon menu. Applies to RibbonMenu control Syntax
|
1 |
controlname.GetItemCount ( { Long ParentIndex } ) |
Argument Description controlname The name of the RibbonMenu control ParentIndex The index of the menu item (RibbonMenuItem) whose submenu items you want to count. If not specified, the menu item will be counted;…
Configuring SSL on Nginx – PB Docs 2022
Configuring SSL on Nginx It is highly recommended that you configure Secure Sockets Layer (SSL) for the server, so that HTTPS can be used to secure the connections between the client and the server. For how to configure SSL on Nginx, refer to http://nginx.org/cn/docs/http/configuring_https_servers.html. Document get from Powerbuilder help Thank you for watching.
GetOAuthToken – PB Docs 2022
GetOAuthToken PowerScript function Description Gets the OAuth 2.0 access token. Applies to RESTClient object Syntax
|
1 |
objectname.GetOAuthToken (TokenRequest tokenRequest, ref string token) |
Argument Description objectname The name of the RESTClient object from which you want to get the OAuth 2.0 access token. tokenRequest The OAuth2.0 Access Token Request object. token The access token returned from the server. Return value Integer. Returns…
Configuring the database connection – PB Docs 2022
Configuring the database connection If your database and Web APIs reside in different servers, you will need to create a database cache so that the Web APIs can connect with the remote database at runtime. Step 1: In the PowerServer project painter, select the Database page > Advanced tab, click New in the upper part…
GetResponseHeader – PB Docs 2022
GetResponseHeader PowerScript function Description Gets the response header by name. Applies to HTTPClient and RestClient objects Syntax
|
1 |
objectname.GetResponseHeader ( headerName ) |
Argument Description objectname The name of the HTTPClient or RestClient object in which you want to get the response headers headerName A string whose value is the header name Return value String. Returns the value related to…
Configuring the PowerServer project – PB Docs 2022
Configuring the PowerServer project Open the Example Sales App demo project (you can search for it in the Start Menu) In the Database page, change the connection information to match that of the Database container created in the previous section (you can obtain the URL of the database container on the resource’s Overview page). Make…
GetDataDDEOrigin (Obsolete) – PB Docs 2022
GetDataDDEOrigin (Obsolete) PowerScript function Description Determines the origin of data from a hot-linked DDE server application or a DDE client application, and if successful, stores the application’s DDE identifiers in the specified strings. PowerBuilder can use GetDataDDEOrigin when it is acting as a DDE client or as a DDE server application. Syntax
|
1 |
GetDataDDEOrigin ( applstring, topicstring, itemstring ) |
Argument Description…
Configuring Azure Kubernetes Service – PB Docs 2022
Configuring Azure Kubernetes Service Contents Creating a Kubernetes cluster in AKS Connecting to the Kubernetes cluster Installing ingress controller Logging into Azure container registry Creating a database Document get from Powerbuilder help Thank you for watching.
GetDateLimits – PB Docs 2022
GetDateLimits PowerScript function Description Retrieves the maximum and minimum date limits specified for the calendar. Applies to MonthCalendar control Syntax
|
1 |
controlname.GetDateLimits ( min, max ) |
Argument Description controlname The name of the MonthCalendar control for which you want to determine the date limits min A date value returned by reference that represents the minimum date that can be referenced…