readme

来自「这个是内存数据库的客户端」· 代码 · 共 42 行

TXT
42
字号
MonetDB extension module for PHP5.To build this module, you have two options.1) Compile this module as a standalone module, which will build a shared object (.so)2) Compile this module within the PHP source tree.1) Standalone compilationUse the provided 'Makefile.standalone' file. The PHP development fileshave to be installed (php-dev), and the php-config script needs to bein your path.    make -f Makefile.standalone    make -f Makefile.standalone install2) Compilation within the source treeThis module can be compiled within PHP build structure. you need toeither copy it from within MonetDB directory into PHP source tree ormake a symlink into it, e.g.:    ln -s $MONETDB_ROOT/src/mapi/clients/php/Cimpl $PHP_SRC/ext/monetdbThen, regenerate PHP's configure script for the module to show up:    cd $PHP_SRC    rm configure; ./buildconf --forceTo compile it, you need to have MONETDB_PREFIX declared in your environment, and then configure and install php e.g.:    configure --with-monetdb=shared	make 	make install	Possibly in the (near) future it will be possible to compile it independently,within MonetDB compiling/testing facilities.examples/monetdb_query_demo.php is a demonstration of current features available in this module. 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?