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
Customer Requests (Sometimes) Drive Me Bonkers!
Is expanding the research of a group into machine learning as a PhD student risky?
Two monoidal structures and copowering
Escape a backup date in a file name
Gears on left are inverse to gears on right?
Sequence of Tenses: Translating the subjunctive
Crossing the line between justified force and brutality
Why not increase contact surface when reentering the atmosphere?
Is a stroke of luck acceptable after a series of unfavorable events?
Anatomically Correct Strange Women In Ponds Distributing Swords
Why are there no referendums in the US?
How do I go from 300 unfinished/half written blog posts, to published posts?
How to check is there any negative term in a large list?
Integer addition + constant, is it a group?
How to write papers efficiently when English isn't my first language?
Do the temporary hit points from the Battlerager barbarian's Reckless Abandon stack if I make multiple attacks on my turn?
What is paid subscription needed for in Mortal Kombat 11?
Risk of infection at the gym?
Pole-zeros of a real-valued causal FIR system
Detecting if an element is found inside a container
I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?
Opposite of a diet
Failed to fetch jessie backports repository
What is the opposite of 'gravitas'?
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 31 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