Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

[Linker error] Unresolved external 'SQL...' from

Status
Not open for further replies.

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
 
Replies continue below

Recommended for you

hi,
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
 
thanks zuadry,
>'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!!
 
hi ballypap,
check your project settings and under the tab &quot;link&quot;, 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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor