1 /**********************************************************************
2  * SQLSetEnvAttr
3  *
4  **********************************************************************
5  *
6  * This code was created by Peter Harvey (mostly during Christmas 98/99).
7  * This code is LGPL. Please ensure that this message remains in future
8  * distributions and uses of this code (thats about all I get out of it).
9  * - Peter Harvey pharvey@codebydesign.com
10  *
11  **********************************************************************/
12 
13 #include <config.h>
14 #include "driver.h"
15 
SQLSetEnvAttr(SQLHENV EnvironmentHandle,SQLINTEGER Attribute,SQLPOINTER Value,SQLINTEGER StringLength)16 SQLRETURN  SQLSetEnvAttr(    SQLHENV             EnvironmentHandle,
17                              SQLINTEGER          Attribute,
18                              SQLPOINTER          Value,
19                              SQLINTEGER          StringLength
20                         )
21 {
22 
23     return SQL_ERROR;
24 }
25 
26 
27