c语言操作mysql数据库.doc_第1页
c语言操作mysql数据库.doc_第2页
c语言操作mysql数据库.doc_第3页
c语言操作mysql数据库.doc_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1. mysql在linux下的编译和安装rootlocalhost zieckey# mkdir /usr/local/mysqlrootlocalhost zieckey# cp mysql-4.0.12.tar.gz /home/rootlocalhost root# cd /home/解压rootlocalhost home# tar zxvf mysql-4.0.12.tar.gzrootlocalhost home# cd mysql-4.0.12配置,生成Makefilerootlocalhost mysql-4.0.12# ./configure -prefix=/usr/local/mysql -without-debug -with-extra-charsets=gb2312 -enable-assembler -without-isam -without-innodb -with-pthread -enable-thread-safe-client编译rootlocalhost mysql-4.0.12# make安装rootlocalhost mysql-4.0.12# make installrootlocalhost mysql-4.0.12# scripts/mysql_install_db创建一个数据库管理员rootlocalhost mysql-4.0.12# groupadd mysqlrootlocalhost mysql-4.0.12# useradd -g mysql mysql改变权限。rootlocalhost mysql# chown -R root /usr/local/mysqlrootlocalhost mysql# chown -R mysql /usr/local/mysql/varrootlocalhost mysql# chgrp -R mysql /usr/local/mysql配置环境变量,以便于编程rootlocalhost mysql-4.0.12# cd /usr/local/mysql/bin/rootlocalhost bin# export PATH=$PATH:/usr/local/mysql/bin/rootlocalhost bin# export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/mysql/lib/mysql/rootlocalhost bin# env启动mysql服务器rootlocalhost root# cd /usr/local/mysql/bin/rootlocalhost bin# ./mysqld_safe -u mysql&Starting mysqld daemon with databases from /usr/local/mysql/var查看是否启动了rootlocalhost root# pgrep mysql159311595015951启动一个mysql客户端rootlocalhost root# /usr/local/mysql/bin/mysqlWelcome to the MySQL monitor. Commands end with ; or g.Your MySQL connection id is 1 to server version: 4.0.12Type help; or h for help. Type c to clear the buffer.mysql创建一个数据库mysql create database cusemysql;Query OK, 1 row affected (0.00 sec)并使用这个数据库mysql use cusemysql;Database changed在给数据库内创建一个表mysql create table children(childno int not null unique,fname varchar(20),age int);Query OK, 0 rows affected (0.00 sec)在该表内插入一项数据mysql insert into children values(5,花儿,10);Query OK, 1 row affected (0.00 sec)mysql select * from children;+-+-+-+| childno | fname | age |+-+-+-+| 5 | 花儿 | 10 |+-+-+-+1 row in set (0.03 sec)mysql2. 下面进行具体的操作/* insert.c */#include #include #include mysql.h/*注意哦,上面也可以是mysql.h的绝对地址,一般在mysql下的include目录下,仔细看看你的在哪里?*/int main(int argc, char *argv) MYSQL my_connection; int res; mysql_init(&my_connection); /*mysql_real_connect(&mysql,host,user,passwd,dbname,0,NULL,0) = NULL)*/ if (mysql_real_connect(&my_connection, localhost, root, ,cusemysql,0,NULL,CLIENT_FOUND_ROWS) printf(Connection successn); res = mysql_query(&my_connection, insert into children values(11,Anny,5); if (!res) printf(Inserted %lu rowsn,(unsigned long)mysql_affected_rows(&my_connection); /*里头的函数返回受表中影响的行数*/ else /分别打印出错误代码及详细信息 fprintf(stderr, Insert error %d: %sn,mysql_errno(&my_connection),mysql_error(&my_connection); mysql_close(&my_connection); else fprintf(stderr, Connection failedn); if (mysql_errno(&my_connection) fprintf(stderr, Connection error %d: %sn,mysql_errno(&my_connection),mysql_error(&my_connection); return EXIT_SUCCESS;gcc -o insert insert.c -lmysqlclient -I/usr/local/mysql/include

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论