mariadb/libmysqld
unknown dbd56fcdc5 Fixes for embedded MySQL
Some limit optimization


BitKeeper/deleted/.del-ib_config.h.in~9e57db8504e55b7:
  Delete: innobase/ib_config.h.in
BitKeeper/deleted/.del-ib_config.h~7539e26ffc614439:
  Delete: innobase/ib_config.h
client/errmsg.c:
  Moved error messages from libmysqld/
client/mysql.cc:
  Removed warnings
include/errmsg.h:
  New info for embedded versions
include/mysql_com.h:
  Fixes for embedded MySQL
libmysql/errmsg.c:
  Fixes for embedded MySQL
libmysqld/Makefile.am:
  Added HANDLER code
libmysqld/lib_sql.cc:
  Fixes for embedded MySQL
libmysqld/lib_vio.c:
  Fixes for embedded MySQL
BitKeeper/etc/ignore:
  Added libmysqld/sql_handler.cc to the ignore list
libmysqld/libmysqld.c:
  Fixes for embedded MySQL
mysql-test/r/null_key.result:
  Fixed result for 4.0
sql/net_serv.cc:
  Fixes for embedded MySQL
sql/sql_parse.cc:
  Fixes for embedded MySQL where the query could be a const char*
sql/sql_select.cc:
  Added limit optimization
sql/sql_select.h:
  Added limit optimization
2001-04-25 01:11:29 +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 Fixes for embedded MySQL 2001-04-25 01:11:29 +03:00
lib_vio.c Fixes for embedded MySQL 2001-04-25 01:11:29 +03:00
libmysqld.c Fixes for embedded MySQL 2001-04-25 01:11:29 +03:00
Makefile.am Fixes for embedded MySQL 2001-04-25 01:11:29 +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....