Example of a MySQL embedded mini-Program

Source: Internet
Author: User

The embedded MySQL version is getting weaker and weaker. It happened that a small application used it and recorded it by the way.
For more information, see.
We hope that the following simplified steps will play a role.
1. Download the code and compile the version. This is relatively simple, and the document is also very reliable.
$ Cmake.-DCMAKE_INSTALL_PREFIX =/home/mysql-DWITH_EMBEDDED_SERVER = 1
$ Make clean $ make-j 8
$ Make install

2. Write a small program
$ Ls
GNUmakefile main. cc my. cnf
The specific code is shown in the attachment, which is actually very simple.
$ Make

3. Install MySQL and initialize it.
$ Cd/home/mysql
$ Scripts/mysql_install_db -- defaults-file =/home/mysql/my. cnf

4. Start the Applet
$./Main
Attachment:

# This assumes the MySQL software is installed in /usr/local/mysql#inc      := /usr/local/mysql/include/mysql#lib      := /usr/local/mysql/lib# If you have not installed the MySQL software yet, try this insteadtopdir   := /home/mysql/mysql-5.5.35inc      := $(topdir)/includelib      := $(topdir)/libmysqldCXX      := g++CPPFLAGS := -I$(inc) -D_THREAD_SAFE -D_REENTRANTCXXFLAGS := -g -WallLDFLAGS  := # You can change -lmysqld to -lmysqlclient to use the# client/server libraryLDLIBS    = -L$(lib) -lmysqld -lm -lcrypt -ldl -lz -lrtifneq (,$(shell grep FreeBSD /COPYRIGHT 2>/dev/null))# FreeBSDLDFLAGS += -pthreadelse# Assume LinuxLDLIBS += -pthreadendif# This works for simple one-file test programssources := $(wildcard *.cc)objects := $(patsubst %cc,%o,$(sources))targets := $(basename $(sources))all: $(targets)clean:rm -f $(targets) $(objects) *.core---#include <mysql.h>#include <iostream>#include <cassert>using namespace std;const char *server_options[] = \       { "mysql_test", "--defaults-file=my.cnf", NULL };int num_elements = (sizeof(server_options) / sizeof(char *)) - 1;const char *server_groups[]= { "libmysqld_server",                               "libmysqld_client",                               NULL};bool is_server_started= false;MYSQL *MySQL= NULL;const char *db= NULL;void start_server(){  cout << "enter start_server()" << endl;  if (mysql_library_init(num_elements, (char **) server_options, (char **) server_groups)) {    is_server_started= false;    cout << "ERROR: start server failed." << endl;  }  else {    is_server_started= true;    cout << "INFO: start server OK." << endl;  }}void stop_server(){  cout << "enter stop_server()" << endl;  mysql_server_end();}bool connect_server(){  cout << "enter connect_server()" << endl;  bool rc = true;  MySQL = mysql_init(NULL);  if (!MySQL)    return rc;  if (mysql_real_connect(MySQL, NULL, NULL, NULL, db, 0, NULL, 0))    rc = false;   MySQL->reconnect= 1;  return rc;}void output_rows(MYSQL_RES *res){  MYSQL_ROW row;  unsigned long n = 0;  while ((row= mysql_fetch_row(res)) != 0)  {    mysql_field_seek(res, 0);    for (unsigned int i= 0 ; i < mysql_num_fields(res); i++)      cout << "row[" << n++ << "]:"<< row[i] << endl;   }}bool get_dbs(){  MYSQL_RES *res;  if (!is_server_started)    return true;  if (!(res= mysql_list_dbs(MySQL, "%")))    return true;  output_rows(res);  mysql_free_result(res);  return false;}int main(int argc, char *argv[]){  start_server();  if (is_server_started) {    cout << "server started." << endl;    if (!connect_server()) {      get_dbs();    }    stop_server();  }  return 0;}---[libmysqld_client][libmysqld_server]basedir=/home/mysql/datadir=/home/mysql/datatmpdir=/home/mysql/tmplog-error=/home/mysql/alert.loglc_messages_dir=/home/mysql/shareinnodb_data_home_dir=/home/mysql/datainnodb_log_group_home_dir=/home/mysql/data


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.