2018-08-09 18:06:22 +02:00
|
|
|
#ifdef WIN32
|
|
|
|
# include <windows.h>
|
|
|
|
#endif
|
|
|
|
#include <sql.h>
|
|
|
|
|
2024-04-14 22:45:38 +02:00
|
|
|
int main(void)
|
2018-08-09 18:06:22 +02:00
|
|
|
{
|
|
|
|
SQLHENV env;
|
|
|
|
SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &env);
|
|
|
|
SQLFreeHandle(SQL_HANDLE_ENV, env);
|
|
|
|
return 0;
|
|
|
|
}
|