You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
198 B

#ifdef WIN32
# include <windows.h>
#endif
#include <sql.h>
int main()
{
SQLHENV env;
SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &env);
SQLFreeHandle(SQL_HANDLE_ENV, env);
return 0;
}