目标:操作系统是 windows7 64位 下配置mysql-5.5.25-winx64 (免安装版),下载地址:http://download.mysql.cn/src/2012/0602/5611.html MySQL与MariaDB MariaDB是MySQL源代码的一个分支,在意识到Orac ...
分类:
数据库 时间:
2016-04-11 00:04:01
阅读次数:
341
①网站系统开发需要的技术有: 一、前台美工设计:Dreamweaver、Flash、Photoshop 二、网站编程:asp、asp.net、php、Jsp、JavaScript、MYSQL ②源代码程序: 1 <!doctype html> 2 3 <html> 4 5 <head> 6 7 <m
分类:
其他好文 时间:
2016-02-29 19:44:05
阅读次数:
138
[mysql@localhost ~]$ uname -r2.6.32 [root@localhost ~]#cp /usr/include/pthread.h /usr/include/pthread.h.bak[root@localhost ~]#echo '/* Linuxthreads */...
分类:
数据库 时间:
2015-11-08 14:18:38
阅读次数:
204
groupadd-rmysql&&useradd-r-gmysql-s/bin/false-Mmysqlyum-yinstallncurses-develncurseswget-chttp://git.typecodes.com/libs/ccpp/cmake-3.2.1.tar.gztarzxvfcmake-3.2.1.tar.gz&&cdcmake-3.2.1&&./configure&&make&&makeinstallwg..
分类:
数据库 时间:
2015-11-04 19:47:41
阅读次数:
309
前面简单介绍过LAMP环境的搭建,今天再写个LNMP环境的搭建过程。LNMP就是linux+nginx+mysql+php的综合web环境,与LAMP比起来,由于使用nginx当做web服务器,所以可以实现高并发处理请求的web站点。1、------------实验环境--------------系统:CentOS6.5-64位最小化安装开发环..
分类:
其他好文 时间:
2015-09-05 17:57:11
阅读次数:
327
1、源代码安装需要解决的问题1)、编译环境(Develomenttools);2)、指定安装路径(编译前用--prifix指定);3)、搜索路径,环境变量(添加进/etc/profile中);4)、链接头文件(在/usr/include将源码产生的头文件链接到此处);5)、链接库文件(在/etc/ld.so.conf.d/下创..
分类:
数据库 时间:
2015-07-21 15:19:57
阅读次数:
272
C版本的Mysql存储块格式读取工具源代码如下:
其中mysql块存储采用大端字节,所以需要做一定的转换,C语言指针强力转换方式如下:
#include
#include
int readpage(unsigned char * page_hdr,int page_off,FILE *fd) {
int ret = -1;
if((ret = fseek(fd,page_off,SE...
分类:
数据库 时间:
2015-05-19 14:47:41
阅读次数:
153
问题描述:MySQL5.5.15原sql如下:selectconstraint_schema,table_name,constraint_name,constraint_typefrominformation_schema.table_constraintswheretable_schemanotin(‘information_schema‘,‘mysql‘,‘test‘,‘performance_schema’);不只是上面提到的table_constraints,..
分类:
数据库 时间:
2014-12-26 14:55:10
阅读次数:
179
原文:http://ourlinux.blog.51cto.com/274624/844854安装配置Xtrabackup先看看如何安装Xtrabackup,最简单的安装方式是使用RPM包,不过想使用源代码方式安装的话,其安装方式有点古怪,因为它采用的在MySQL源代码上打补丁构建的方式安装的。这里...
分类:
其他好文 时间:
2014-12-10 19:41:08
阅读次数:
423
先检查系统中是否已经安装了mysql如果有请卸载下载mysql源代码包http://www.mysql.com/downloads/编译参考文档http://dev.mysql.com/doc/refman/5.6/en/source-configuration-options.html
分类:
数据库 时间:
2014-12-07 00:06:22
阅读次数:
251