• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

MySQL嵌入式版本的小程序例子

mysql 搞代码 4年前 (2022-01-09) 12次浏览 已收录 0个评论

# 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 instead topdir := /home/mysql/mysql-5.5.35

# 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 instead

topdir := /home/mysql/mysql-5.5.35

inc := $(topdir)/include

lib := $(topdir)/libmysqld

CXX := g++

CPPFLAGS := -I$(inc) -D_THREAD_SAFE -D_REENTRANT

CXXFLAGS := -g -Wall

LDFLAGS :=

# You can change -lmysqld to -lmysqlclient to use the

# client/server library

LDLIBS = -L$(lib) -lmysqld -lm -lcrypt -ldl -lz -lrt

ifneq (,$(shell grep FreeBSD /COPYRIGHT 2>/dev/null))

# FreeBSD

LDFLAGS += -pthread

else

# Assume Linux

LDLIBS += -pthread

endif

# This works for simple one-file test programs

sources := $(wildcard *.cc)

objects := $(patsubst %cc,%o,$(sources))

targets := $(basename $(sources))

all: $(targets)

clean:

rm -f $(targets) $(objects) *.core

#include

#include

#include

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_serve本文来源gaodai#ma#com搞@代~码^网+r()” << 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/data

tmpdir=/home/mysql/tmp

log-error=/home/mysql/alert.log

lc_messages_dir=/home/mysql/share

innodb_data_home_dir=/home/mysql/data

innodb_log_group_home_dir=/home/mysql/data


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:MySQL嵌入式版本的小程序例子

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址