Can't include libraries, unresolved external errors.. Programming Software Development by En1ro … // for printf #include <D:\Programavimas\Naujas Darbas\SQLAPI\include\SQLAPI.h> // main SQLAPI++ header int main(int argc, char* argv[]) { SAConnection… Unresolved external 'SAException::~SAException()' referenced from D:\PROGRAMAVIMAS\NAUJAS DARBAS\SQLAPI\SAMPLES\STEP1.OBJ [Linker Error] Unresolved external 'SAString::~SAString()' … Re: Can't include libraries, unresolved external errors.. Programming Software Development by mitrmkar In [url]http://www.sqlapi.com/OnLineDoc/index.html[/url] it says that for Borland, … MySQL library for C++? Programming Software Development by Kadence …/cplusplus.html"]MySQL++[/URL] [*][URL="http://www.sqlapi.com/"]SQLAPI++[/URL] [*][URL="http://www.alhem.net/project/mysql…/index.html"]MySQL wrapped[/URL] [/LIST] I think SQLAPI++ abstracts away which database you're using, which is good… Re: SQL Type Database with c++ Programming Software Development by tesuji …. As already mentioned there are some o-o extentions like sqlapi++ shareware or QT-sql (my recommendation if you are looking…; endl; } // ... I myself wouldn't use comprehensive interfaces such as sqlapi++ or QT-sql (which best fits to famous QT) for… SQL Library Programming Software Development by Maulth …, yet powerful, no need to install ODBC. [url]http://www.sqlapi.com/[/url] You can read more yourself, but it works… SQL Type Database with c++ Programming Software Development by daviddoria … as: [code] SELECT * FROM table_name [/code] I googled and found sqlapi++, is that the best way to go? Thanks, Dave Re: SQL Type Database with c++ Programming Software Development by Ancient Dragon … databases such as MySQL. >>I googled and found sqlapi++, is that the best way to go? It appears to… Re: SQL Library Programming Software Development by paulojrudi …, yet powerful, no need to install ODBC. [url]http://www.sqlapi.com/[/url] You can read more yourself, but it works… How to Connect to MySQL Programming Software Development by senergy … not working with vs2010, I have found topic about somewhere, sqlapi is giving me errors from headers - wtf?! etc) Thanks! Best… Re: Connectivity Programming Software Development by winbatch There is also sqlapi [url="http://www.sqlapi.com"]www.sqlapi.com[/url] Re: c and postgres Programming Software Development by ~s.o.s~ Are you allowed to use third party API's in your project? If so, then try using [URL="http://www.daniweb.com/forums/www.sqlapi.com/"]sqlapi[/URL], a C++ library for connecting to SQL databases. Re: c and postgres Programming Software Development by Covinus one more question . sqlapi is a wrapper of libpq of postgres how can i use sqlapi if libpq also does not exist in my machine. Re: C++ and ODBC Programming Software Development by Ancient Dragon …"]odbc c++ libraries[/URL] [URL="http://www.sqlapi.com/"]SQLAPI++[/URL] [URL="http://www.sqlite.org/"]SqLite… Re: Connecting C++ Console App to MS Access Programming Software Development by Assembly Guy Are you using MS Visual C++? If not, have you had a look at [SQLAPI++](http://www.sqlapi.com/)? Re: Connecting to MSSQL in C++ program Programming Software Development by WolfPack maybe [URL=http://www.sqlapi.com/]this[/URL] will help. Re: connectivity in Borland C Programming Software Development by SpS [QUOTE=rajuwani121]I just need the code for connecting the sql server 2000 using borland c[/QUOTE] No one will write code for you... Here is library for accessing SQL...[URL=http://www.sqlapi.com/]Link[/URL] it contains lot of examples...modify it according to your needs Re: Pro*C to Mysql C API Programming Software Development by ~s.o.s~ … realted to CURSORS and Oracle and mysql. [URL]http://www.sqlapi.com/Examples/refcursors.cpp[/URL] [URL]http://dev.mysql.com… Re: Need Help -- Database connectivity in C Programming Software Development by Ancient Dragon There are hundreds of free examples on the net, just google for "odbc c libraries". [URL="http://www.sqlapi.com/"]Here[/URL] is just one of them Or why not just compile the code you posted in your other thread? Re: c and postgres Programming Software Development by ~s.o.s~ Ah, scrap the sqlapi, it just offers a trial version unless you order it, so I guess it is out. The only option left with you is to download the API provided by PostgreSQL instead. [URL="http://pqxx.org/development/libpqxx/"]This[/URL] page is your last hope. Re: C++ connect to SQL Server Programming Software Development by vijayan121 the easiest way would be to use a library. eg. [url]http://www.sqlapi.com/[/url] Re: Selection and Projection Operators Programming Software Development by MrJNV Ah. Now I sorta see what needs to be done. I never realized I needed an sqlapi library for this, and those WHERE clauses help. Thanks! Re: Connecting to MSSQL in C++ program Programming Software Development by marekbar218 [QUOTE=WolfPack;177709]maybe [URL=http://www.sqlapi.com/]this[/URL] will help.[/QUOTE] I want to use Windows API to connect with MS SQL database and make so operations like writing to/reading from database and some manipulations with it. Do you know any pages with tutorials about using MS SQL database in program written in C++ ? Re: more help lol Programming Software Development by Narue … SQL Server Express. You can use a library such as SQLAPI++ to access the database with C++. However, I suspect you… Re: Can't include libraries, unresolved external errors.. Programming Software Development by Narue Are you linking with a library file or DLL as well, or just including the header? Re: Can't include libraries, unresolved external errors.. Programming Software Development by En1ro Well, i added that folder to my project folder and then included the header of the library which i need, anyway then i'm trying to use Edit : Including the header only. [CODE] SAConnection con2; con2.Connect("srvname@dbname", "username", "password", SA_Sybase_Client); [/CODE] Got same problems, As i uderstood … Re: Can't include libraries, unresolved external errors.. Programming Software Development by En1ro Any advices? Or there is a good tutorials about including libraries, as i googled, the main articles are the libraries, but not how to use them.. Re: Can't include libraries, unresolved external errors.. Programming Software Development by Ancient Dragon No tutorial because each compiler does it differently. I don't know how Borland Builder 6 does it -- you should ask someone in the Borland support forums. Re: Can't include libraries, unresolved external errors.. Programming Software Development by En1ro Yes, i got those files. I'm using Borland C++ builder 6, as i can't install newone codegear - after instalation dll errors.. Anyway, back to the topic i tried to add my lib by the way of Importing Type library, but then it says, it doesn;t find that library.. Re: Can't include libraries, unresolved external errors.. Programming Software Development by mitrmkar [QUOTE=En1ro;597201]i tried to add my lib by the way of Importing Type library[/QUOTE] The .lib files are not type libraries, so forget that. Basically you now just need to add the required library file to your project's linker input configuration, so that the linker finds the expected library code to pull in to your program. As a test, try … Re: Can't include libraries, unresolved external errors.. Programming Software Development by En1ro [QUOTE=mitrmkar;597212]The .lib files are not type libraries, so forget that. in the IDE's Project/Options/Linker/Linking - Additional options -field. Then build the project and post the compiler/linker output[/QUOTE] You see, there isint such field, i just manage to go to IDE's Project/Options/Linker/Linking and there is radiobox …