Installing MySQL Connector/C++libapache2-mod-fastcgi “not available”What options are available for C++...
What is the intuitive meaning of having a linear relationship between the logs of two variables?
How does Loki do this?
Risk of infection at the gym?
Gears on left are inverse to gears on right?
Customer Requests (Sometimes) Drive Me Bonkers!
Large drywall patch supports
Lay out the Carpet
Did Dumbledore lie to Harry about how long he had James Potter's invisibility cloak when he was examining it? If so, why?
How to safely derail a train during transit?
Why not increase contact surface when reentering the atmosphere?
What happens if you roll doubles 3 times then land on "Go to jail?"
Pole-zeros of a real-valued causal FIR system
Would a high gravity rocky planet be guaranteed to have an atmosphere?
Closest Prime Number
I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?
What is the difference between "behavior" and "behaviour"?
Is a stroke of luck acceptable after a series of unfavorable events?
What is paid subscription needed for in Mortal Kombat 11?
Is exact Kanji stroke length important?
Do the temporary hit points from Reckless Abandon stack if I make multiple attacks on my turn?
Term for the "extreme-extension" version of a straw man fallacy?
Hostile work environment after whistle-blowing on coworker and our boss. What do I do?
Is there a good way to store credentials outside of a password manager?
How does buying out courses with grant money work?
Installing MySQL Connector/C++
libapache2-mod-fastcgi “not available”What options are available for C++ GUI development with Ubuntu?MySQL script does not stop, reboots mysqlMysql 5.5 reinstallation 12.04how to upgrade phpmyadmin after installing mysql 5.6Postfix and Ownclound mysql authenticationInstalling Eclipse IDEs for Java and C/C++trying to install mysql-connector for python 3MySQL not starting due to errorsUpgrade all packages except MySQL, via aptitudeMySQL Variables and referencing multiple tables
I would like to know which is the procedure to install the mysql c++ connector.
After installing it to my Ubuntu OS will I have these extra c++ commands avaiable in every c++ IDE? For example, can I use them in Qt, Netbeans, eclipse for c++ and all other c++ IDE environments after a successful installation?
mysql c++ ide
add a comment |
I would like to know which is the procedure to install the mysql c++ connector.
After installing it to my Ubuntu OS will I have these extra c++ commands avaiable in every c++ IDE? For example, can I use them in Qt, Netbeans, eclipse for c++ and all other c++ IDE environments after a successful installation?
mysql c++ ide
add a comment |
I would like to know which is the procedure to install the mysql c++ connector.
After installing it to my Ubuntu OS will I have these extra c++ commands avaiable in every c++ IDE? For example, can I use them in Qt, Netbeans, eclipse for c++ and all other c++ IDE environments after a successful installation?
mysql c++ ide
I would like to know which is the procedure to install the mysql c++ connector.
After installing it to my Ubuntu OS will I have these extra c++ commands avaiable in every c++ IDE? For example, can I use them in Qt, Netbeans, eclipse for c++ and all other c++ IDE environments after a successful installation?
mysql c++ ide
mysql c++ ide
edited Jul 20 '12 at 9:52
dlin
2,22721631
2,22721631
asked Jul 20 '12 at 9:24
Evaggelos TsampazisEvaggelos Tsampazis
46124
46124
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Using a debian command worked for me, but I haven't tested the libs yet, so I'm not 100% sure if it truly worked. http://packages.debian.org/sid/libmysqlcppconn-dev
apt-get install libmysqlcppconn-dev
However, I did do this first https://askubuntu.com/a/259603/128334. You probably will need to as well.
Update (it works)
I tried this http://dev.mysql.com/doc/refman/5.1/en/connector-cpp-examples-complete-example-1.html with this flag https://stackoverflow.com/a/11879650/1382306, and it worked.
add a comment |
Goto command line and type :
sudo apt-get install libmysqlcppconn-dev
Or if your are having some other issues you can go to the main website page :
MySQL Connector Download
And download and build the connector yourself.
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f165868%2finstalling-mysql-connector-c%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Using a debian command worked for me, but I haven't tested the libs yet, so I'm not 100% sure if it truly worked. http://packages.debian.org/sid/libmysqlcppconn-dev
apt-get install libmysqlcppconn-dev
However, I did do this first https://askubuntu.com/a/259603/128334. You probably will need to as well.
Update (it works)
I tried this http://dev.mysql.com/doc/refman/5.1/en/connector-cpp-examples-complete-example-1.html with this flag https://stackoverflow.com/a/11879650/1382306, and it worked.
add a comment |
Using a debian command worked for me, but I haven't tested the libs yet, so I'm not 100% sure if it truly worked. http://packages.debian.org/sid/libmysqlcppconn-dev
apt-get install libmysqlcppconn-dev
However, I did do this first https://askubuntu.com/a/259603/128334. You probably will need to as well.
Update (it works)
I tried this http://dev.mysql.com/doc/refman/5.1/en/connector-cpp-examples-complete-example-1.html with this flag https://stackoverflow.com/a/11879650/1382306, and it worked.
add a comment |
Using a debian command worked for me, but I haven't tested the libs yet, so I'm not 100% sure if it truly worked. http://packages.debian.org/sid/libmysqlcppconn-dev
apt-get install libmysqlcppconn-dev
However, I did do this first https://askubuntu.com/a/259603/128334. You probably will need to as well.
Update (it works)
I tried this http://dev.mysql.com/doc/refman/5.1/en/connector-cpp-examples-complete-example-1.html with this flag https://stackoverflow.com/a/11879650/1382306, and it worked.
Using a debian command worked for me, but I haven't tested the libs yet, so I'm not 100% sure if it truly worked. http://packages.debian.org/sid/libmysqlcppconn-dev
apt-get install libmysqlcppconn-dev
However, I did do this first https://askubuntu.com/a/259603/128334. You probably will need to as well.
Update (it works)
I tried this http://dev.mysql.com/doc/refman/5.1/en/connector-cpp-examples-complete-example-1.html with this flag https://stackoverflow.com/a/11879650/1382306, and it worked.
edited May 23 '17 at 12:39
Community♦
1
1
answered Mar 14 '13 at 3:32
user128334
add a comment |
add a comment |
Goto command line and type :
sudo apt-get install libmysqlcppconn-dev
Or if your are having some other issues you can go to the main website page :
MySQL Connector Download
And download and build the connector yourself.
New contributor
add a comment |
Goto command line and type :
sudo apt-get install libmysqlcppconn-dev
Or if your are having some other issues you can go to the main website page :
MySQL Connector Download
And download and build the connector yourself.
New contributor
add a comment |
Goto command line and type :
sudo apt-get install libmysqlcppconn-dev
Or if your are having some other issues you can go to the main website page :
MySQL Connector Download
And download and build the connector yourself.
New contributor
Goto command line and type :
sudo apt-get install libmysqlcppconn-dev
Or if your are having some other issues you can go to the main website page :
MySQL Connector Download
And download and build the connector yourself.
New contributor
New contributor
answered 8 mins ago
Subham DebnathSubham Debnath
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f165868%2finstalling-mysql-connector-c%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown