4D v16

ODBC_SQLGetEnvAttr

Accueil

 
4D v16
ODBC_SQLGetEnvAttr

ODBC_SQLGetEnvAttr 


 

ODBC_SQLGetEnvAttr ( attribute ; valeur ) -> Résultat 
Paramètre Type   Description
attribute  Entier long in Attribute to retrieve
valeur  Entier long in Current value of the attribute
Résultat  Entier long in Returns the result of the MS ODBC API function SQLGetEnvAttr

The ODBC_SQLGetEnvAttr command returns the current setting of an environment attribute.

attribute is the environment attribute to retrieve and can be one of the following values:

ConstantDescription
SQL_ATTR_CONNECTION_POOLINGEnables or disables connection pooling at the environment level
SQL_ATTR_CP_MATCHDetermines how a connection is chosen from a connection pool
SQL_ATTR_ODBC_VERSIONDetermines whether certain functionality exhibits ODBC 2.x behavior or ODBC 3.x behavior
SQL_ATTR_OUTPUT_NTSDetermines how the driver returns string data

value is the current value of attribute.

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

SQL_SUCCESS, SQL_SUCCESS_WITH_INFO, SQL_NO_DATA, SQL_ERROR, or SQL_INVALID_HANDLE.

Exemple  

The following method sets a environment attribute and then retrieves it:

 $result:=ODBC_SQLSetEnvAttr(SQL_ATTR_ODBC_VERSION;3)
 $result:=ODBC_SQLGetEnvAttr(SQL_ATTR_ODBC_VERSION;vEnvAttribute)



Voir aussi  

ODBC_SQLSetEnvAttr

 
PROPRIÉTÉS 

Produit : 4D
Thème : ODBC_Driver attributes
Numéro : 16983
Nom intl. : ODBC_SQLGetEnvAttr

 
HISTORIQUE 

Créé : 4D ODBC Pro 2004

 
UTILISATION DE L'ARTICLE

4D ODBC Pro ( 4D v16)