Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • 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

  • Thread starter Thread starter -
  • Start date Start date
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
 
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.

Similar threads

Part and Inventory Search

Sponsor

Back
Top