Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
03-28-2003, 02:11 AM
|
#1
|
|
Guru
Registered: Jan 2003
Location: Turkey&USA
Distribution: Emacs and linux is its device driver(Slackware,redhat)
Posts: 1,398
Rep:
|
c++ and mysql api
i am using redhat 8.0 and installed MySQL++ 1.7.9 RPM for Red Hat 8.0 with gcc 3.2 installation went fine.when i tried to compile the following code
#include <iostream>
#include <iomanip>
#include <sqlplus/sqlplus.hh>
int main()
{
Connection con("mysql_cpp_data");
Query query=con.query();
query<<"select * from stock";
Result res =query.store();
cout<<"query: "<,query.preview()<<endl;
cout<<"Records found: "<<res.size()<<endl<<endl;
Row row;
cout.setf(iso::left);
cout<<setw(17)<<"item"
<<setw(4)<<"Num"
<<setw(7)<<"weith"
<<setw(7)<<"price"
<<"date"<<endl
<<endl;
Result::iterator i;
for(i=res.begin();i!=res.end();i++){
row = *i;
cout<<setw(17)<<row[0]
<<setw(4)<<row[1]
<<setw(7)<<row["weight"]
<<setw(7)<<row[3]
<<row[4]<<endl;
}
return 0;
}
i got a lot of errors 20 pages or so first one is mysql.h is not found what other thing i have to install to use the api
|
|
|
|
03-28-2003, 04:13 AM
|
#2
|
|
Senior Member
Registered: Aug 2002
Location: Groningen, The Netherlands
Distribution: ubuntu
Posts: 2,530
Rep: 
|
Re: c++ and mysql api
Quote:
Originally posted by nakkaya
i got a lot of errors 20 pages or so first one is mysql.h is not found what other thing i have to install to use the api [/B]
|
Sounds like you have the MySQL API installed, but not its header-files. Often header-files are in an extra package.
I don't know much about RedHat, but the rpm package your are looking for is probably calles something like:
mysql- devel-xx.xx.rpm or mysql- dev-xx.xx.rpm
|
|
|
|
03-28-2003, 04:39 AM
|
#3
|
|
Guru
Registered: Jan 2003
Location: Turkey&USA
Distribution: Emacs and linux is its device driver(Slackware,redhat)
Posts: 1,398
Original Poster
Rep:
|
i copied all include file from /mysql and /sqlplus to /usr/include but now i get another eror
undifined reference mysqlconnection
and alot of other things why?
|
|
|
|
03-28-2003, 09:14 AM
|
#4
|
|
Senior Member
Registered: Aug 2002
Location: Groningen, The Netherlands
Distribution: ubuntu
Posts: 2,530
Rep: 
|
Make sure the linker knows where the (shared) libs of the MySQL API are.
"/mysql" is a bit of weird place to have installed. Myabe you should try to reinstall it from rpm packages, along with the devel/dev package.
|
|
|
|
03-28-2003, 11:10 PM
|
#5
|
|
Guru
Registered: Jan 2003
Location: Turkey&USA
Distribution: Emacs and linux is its device driver(Slackware,redhat)
Posts: 1,398
Original Poster
Rep:
|
i installed all the devel packages
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 04:19 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|