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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

C++ LNK2019 unresolved external symbol

Status
Not open for further replies.

das10

Programmer
Dec 20, 2002
2
US
I'm currently using Visual Studio.net C++ and embedded SQL. Whenever I try to build a solution, I'm experiencing the following errors related to my functions. This is happening after it compiles fine, but then tries to link.

error LNK2019: unresolved external symbol _disconnect_from_sql_server referenced in function _report_processing


error LNK2019: unresolved external symbol _get_winder_vals referenced in function _report_processing


Can anyone help????
 
Hi,

I assume you've added the appropriate .lib files to your project? Also, what vendor and version of ESQL are you using?

--
William
Software Engineer
ICQ No. 56047340
 
I'm using Visual Studio.net Version 6 with SQL Server 7.0.
I've tried everything I can think of. I've confirmed I've got all of the necessary libraries. These function errors are all properly declared in my include files.

Thanks for any and all help.
 
Das,

Well if you're confident that everything is the way it should be then try looking for a typo. It could be as simple as a wrong case letter or an - instead of a _.

That's all I can suggest at the moment. The functions listed above are they yours or in-builts?

--
William
Software Engineer
ICQ No. 56047340
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top