mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
bc0befda9c
BitKeeper/etc/ignore: Added libmysqld/uniques.cc client/mysqltest.c: Don't core dump if --socket isn't specified. Add --test-file option, to facilitate running mysqltest under debugger. libmysqld/Makefile.am: We need uniques.cc libmysqld/lib_sql.cc: Tiny cleanup. libmysqld/libmysqld.c: Split mysql_real_query() into mysql_send_query() and mysql_read_query_results(). |
||
---|---|---|
.. | ||
copyright | ||
lib_load.cc | ||
lib_sql.cc | ||
lib_vio.c | ||
libmysqld.c | ||
Makefile.am | ||
README | ||
WHITEPAPER |
LIBRARY (ONE_PROCESS VERSION) OF MYSQL CLIENT Installation steps: 1) unpack mysql-3.23.27-beta.tar tarball source version (get from www.mysql.com.sg) 2) patch mysql-3.23.27-beta with lbver-3.23.27-beta.diff: patch -p0 <lbver-3.23.27-beta.diff 3) cd mysql-3.23.27-beta 4) autoconf 7) ./configure --prefix=/usr/local/mysql --with-library-version 8) make 9) make install (should have the root privileges) 10)mkdir /usr/local/mysql/var (if not already) 15) cd ../client 19) ./mysql (start libarary version mysql) mysql> create database db1; mysql> use db1; mysql> create table a123(i integer) ...... now you can work with library version....