Guest
hi,
I made win32 console program
it uses ODBC from sql.h
and works perfect
but now I want to make a gui for it
if I us VC++ (win32 application) or Borland (application project) it gives me this error:
[Linker error] Unresolved external 'SQL...' from d:\software\gui\VRT.OBJ
the code is simple:
#include <sql.h>
SQLHANDLE EnvHandle;
SQLHANDLE ConHandle;
SQLHANDLE StmtHandle;
SQLRETURN rc;
SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &EnvHandle);
can you help me
thanks
barry
I made win32 console program
it uses ODBC from sql.h
and works perfect
but now I want to make a gui for it
if I us VC++ (win32 application) or Borland (application project) it gives me this error:
[Linker error] Unresolved external 'SQL...' from d:\software\gui\VRT.OBJ
the code is simple:
#include <sql.h>
SQLHANDLE EnvHandle;
SQLHANDLE ConHandle;
SQLHANDLE StmtHandle;
SQLRETURN rc;
SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &EnvHandle);
can you help me
thanks
barry