4D v14.1

ODBC_SQLConnect

Home

 
4D v14.1
ODBC_SQLConnect

ODBC_SQLConnect 


 

ODBC_SQLConnect ( connectionID ; serverName ; userName ; password ) -> Function result 
Parameter Type   Description
connectionID  Longint in Connection ID
serverName  String in Data source name
userName  String in User identifier
password  String in User password
Function result  Longint in Returns the result of the MS ODBC API function SQLConnect

The ODBC_SQLConnect function establishes a connection to a specific driver by passing it the serverName, userName, and password. It internally uses the MS ODBC API function SQLConnect.

connectionID is a valid connection ID returned by ODBC_SQLAllocConnect.

serverName is the name of the data source name.

userName is the user name or login name defined when setting up ODBC authorization.

password is the user password.

For more information, please see the SQLConnect function in the MS ODBC API Reference at http://msdn.microsoft.com/en-us/library/ms711810(VS.85).aspx.

SQL_SUCCESS, SQL_SUCCESS_WITH_INFO, SQL_ERROR, or SQL_INVALID_HANDLE.

Example  

The following method connects you to a data source whose name, username, and password are passed to the ODBC_SQLConnect command:

 $result:=ODBC_SQLAllocConnect($connectionID)
 $result:=ODBC_SQLConnect($connectionID;"access";"Administrator";"admin1")
 If($result=SQL_SUCCESS) `Connection was successful
  `... continue by calling other commands that require a valid $connectionID
 End if

 
PROPERTIES 

Product: 4D
Theme: ODBC_Connection
Number: 16993

 
HISTORY 

Created: 4D ODBC Pro 2004

 
SEE ALSO 

ODBC_SQLDisconnect

 
ARTICLE USAGE

4D ODBC Pro ( 4D ODBC Pro v11.4)
4D ODBC Pro ( 4D ODBC Pro v12)
4D ODBC Pro ( 4D v13)
4D ODBC Pro ( 4D v14 R3)
4D ODBC Pro ( 4D v14.1)
4D ODBC Pro ( 4D v14 R2)
4D ODBC Pro ( 4D v14 R4)