[Linker error] Unresolved external 'SQL...' from
[Linker error] Unresolved external 'SQL...' from
(OP)
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





RE: [Linker error] Unresolved external 'SQL...' from
it seems that liblary containing the functions SQLAllocHandle() is not included in the library directory in your MS-VC++, check it. I had programmed also a win32 console program using ODBC to connect to Oracle, and that runs till now.
cheers
RE: [Linker error] Unresolved external 'SQL...' from
>'it seems that liblary containing the functions SQLAllocHandle() is not included in the library directory in your MS-VC++'
could you explain this a little bit more detailed..
your help is appreciated!!
RE: [Linker error] Unresolved external 'SQL...' from
check your project settings and under the tab "link", you see the box for Object/library modules. You must fill it with the library name containing the functions SQLAllocHandle(). If you do not know which library, try to look in manual.
cheers