blob: 6c4318be2acb9357651f38cb6873e1f83d8a497e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifdef WIN32
# include <windows.h>
#endif
#include <sql.h>
int main(void)
{
SQLHENV env;
SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &env);
SQLFreeHandle(SQL_HANDLE_ENV, env);
return 0;
}
|