mysql 最后支持bdb的是哪个版本?
我的一个程序要用到bdb存储一些东西,但管理的时候,希望用mysql来管理,这样方便!
MySQL 5.1分发版有引用 MySQL 5.1分发版有 SQL code: Your MySQL connection id is 10216 Server version: 5.1.37-log Source distribution mysql> select version(); +------------+ | version() | +------------+ | 5.1.37-log | +------------+ 1 row in set (0.00 sec) mysql> show engines; +------------+---------+----------------------------------------------------------------+--------------+------+------------+ | Engine | Support | Comment | Transactions | XA | Savepoints | +------------+---------+----------------------------------------------------------------+--------------+------+------------+ | ndbcluster | NO | Clustered, fault-tolerant tables | NULL | NULL | NULL | | MRG_MYISAM | YES | Collection of identical MyISAM tables | NO | NO | NO | | BLACKHOLE | YES | /dev/null storage engine (anything you write to it disappears) | NO | NO | NO | | CSV | YES | CSV storage engine | NO | NO | NO | | SPHINX | YES | Sphinx sto
相关问答:
我是用mysql自带的C API if(mysql_real_connect(&mysql,"125.0.0.108","root","root","home",3306,NULL,0)) { AfxMessageBox("数据库连接失败") ......
环境:win2003 apache2 resin3 php5 mysql5 mysql错误里出现这个,服务器直接死到那里。 InnoDB: The log sequence number in ibdata files does not match InnoDB: the log sequence number in the ib_log ......
select * from table where '123456789' like '%'+字段表+'%' 这句sql在sqlserver下通过,在mysql下有报错,mysql下如何实现这样的查询呢 SQL code: select * from table whe ......
大家好: 我是搞C的, 现在想用C 连接MYSQL,但是怎么也连接不了,我的代码如下: #include <stdio.h> #include "C:\Program Files\MySQL\MySQL Server 5.0\include\mysql.h" ......