mariadb/libmysqld
unknown a96e1b6954 Fixed bug in multi-table-delete code
client/mysqltest.c:
  Added --big-test argument
libmysqld/lib_sql.cc:
  Reset error messages before new query.
libmysqld/lib_vio.c:
  Fixed reading of results.
mysql-test/mysql-test-run.sh:
  Added option --big
mysql-test/r/multi_update.result:
  More multi-delete tests
mysql-test/t/bdb-crash.test:
  Added missing test if BDB is supported
mysql-test/t/multi_update.test:
  More multi-delete tests
2001-06-24 22:11:00 +03:00
..
copyright Added all changes from old 4.0 version: 2001-04-11 13:04:03 +02:00
lib_load.cc Added all changes from old 4.0 version: 2001-04-11 13:04:03 +02:00
lib_sql.cc Fixed bug in multi-table-delete code 2001-06-24 22:11:00 +03:00
lib_vio.c Fixed bug in multi-table-delete code 2001-06-24 22:11:00 +03:00
libmysqld.c Fixed bug when using more than 1 connection 2001-06-15 22:55:15 +03:00
Makefile.am Fixed bug when using more than 1 connection 2001-06-15 22:55:15 +03:00
README Added all changes from old 4.0 version: 2001-04-11 13:04:03 +02:00
WHITEPAPER Added all changes from old 4.0 version: 2001-04-11 13:04:03 +02:00

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....