首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > 其他 > 对任意文件系统文件MySQL存储引擎

对任意文件系统文件MySQL存储引擎

  • 资源大小:304.64 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:1次
  • 资源积分:1积分
  • 标      签: mysql 系统 引擎 文件 存储 任意

资 源 简 介

Overview This is a project for the MySQL Filesystem storage engine. It translates normal files on your server into relational tables inside of MySQL. It is a very alpha project at the moment, but works for basic usage. You can see details of installing it and using it here: http://mysql-filesystem-engine.googlecode.com/svn/trunk/README Example ``` mysql> CREATE TABLE LoadAverage ( load1 DECIMAL(3, 2), load5 DECIMAL(3, 2), load15 DECIMAL(3, 2), active_processes VARCHAR(12), lastpid INTEGER) ENGINE=FILESYSTEM connection="file:///proc/loadavg"; Query OK, 0 rows affected (0.00 sec) mysql> select * from LoadAverage; +-------+-------+--------+------------------+---------+ | load1 | load5 | load15 | active_processes | lastpid | +-------+-------+--------+------------------+---------+ | 0.00 | 0.00 | 0.00 | 1/97 | 6061 | +-------+-------+--------+------------------+---------+ 1 row in set (0.00 sec) ```

文 件 列 表

filesystem-engine-0.1.1
configure
config
INSTALL
src
README
TODO
aclocal.m4
ChangeLog
AUTHORS
Makefile.in
NEWS
config.h.in
COPYING
Makefile.am
configure.in

相 关 资 源

您 可 能 感 兴 趣 的

同 类 别 推 荐

VIP VIP
0.226016s