AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / Conectores Nativos/Accesos Nativos / Conector Nativo PostgreSQL
  • Overview
  • Programming
  • 1. Establishing the connection
  • 2. Running queries
  • 3. Retrieving the result
  • 4. Closing the connection
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Overview
You can use SQL functions to handle the PostgreSQL database.
Differences from HFSQL programming: Using SQL functions to manipulate PostgreSQL data does not imply importing the file structure into the analysis.. However, the data must be handled by queries only. The content of the PostgreSQL files cannot be read directly.
Programming

1. Establishing the connection

SQLConnect opens a connection to a PostgreSQL database via the Native Connector. The type of database used (PostgreSQL in this case) must be passed as parameter to SQLConnect.
Remark: the name of the PostgreSQL data source (here "BasePostgreSQL") is the name of the workstation where the database is available or its IP address.. In any case, the name of the "Database" must be specified.
ConnectionNum = SQLConnect("PostgreSQLDatabase", "", "", "", "PostgreSQL")
// or 
// ConnectionNum = SQLConnect("PostgreSQLDatabase", "User", "Password", "MyDatabase", ...
// "PostgreSQL")
 
// Connection to a remote PostgreSQL database
ConnectionNum = SQLConnect("192.168.1.51", "User", "Password", "test", "PostgreSQL")
Alphabet management: All exchanges are made in the current character set. An error occurs during the connection if the server does not support the conversions from or to the current character set. In this case, ChangeCharset must be used before SQLConnect to select a character set compatible with the server.

2. Running queries

The queries are run by SQLExec. SQLExec expects the text of the SQL query as parameter, as well as the name that will be given to this query.
SQLExec("SELECT LASTNAME, FIRSTNAME, EXTENSION, PHOTO FROM CUSTOMER", "QRY1")

3. Retrieving the result

Several methods can be used to retrieve the result:
  • SQLFirst: Gets the result and starts an iteration with SQLFirst/SQLCol.
  • SQLTable: Retrieves the result of the query in a Table control populated programmatically in the WINDEV application or WEBDEV website. The result of the query can be retrieved by partial Fetch.
  • SQLFetch: Used to read the different lines of the query result. The iteration over the query result is performed with SQLFetch/SQLGetCol.
SQLLock is used to lock the table records or the records selected by the query. On a PostgreSQL database, the timeout to lock or modify a locked record is infinite by default. To modify the timeout, it is recommended to use "WD Command Timeout" in the optional information of SQLConnect. In this case, the database will return an error when the timeout is reached.

4. Closing the connection

SQLClose is used to close the connection to the database once all the necessary queries have been run.
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Como apontar para porta diferente da padrao do postgresql?
https://forum.pcsoft.fr/fr-FR/pcsoft.br.windev/4122-atencao-versao-28-driver-nativo-postgresql-teve-uma/read.awp
Boller
06 06 2023

Última modificación: 05/12/2024

Señalar un error o enviar una sugerencia | Ayuda local