~mdcallag/+junk/5.1-map

« back to all changes in this revision

Viewing changes to libmysqld/README

  • Committer: sasha at sashanet
  • Date: 2001-04-12 01:09:00 UTC
  • mfrom: (669.1.1)
  • Revision ID: sp1r-sasha@mysql.sashanet.com-20010412010900-14282
Ugly merge of 3.23 changes into 4.0 - fix up needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
LIBRARY (ONE_PROCESS VERSION) OF MYSQL CLIENT
 
2
 
 
3
Installation steps:
 
4
 
 
5
 
 
6
1) unpack mysql-3.23.27-beta.tar tarball source version (get from www.mysql.com.sg)
 
7
2) patch  mysql-3.23.27-beta with lbver-3.23.27-beta.diff:
 
8
   patch -p0 <lbver-3.23.27-beta.diff
 
9
3) cd mysql-3.23.27-beta 
 
10
4) autoconf
 
11
7) ./configure --prefix=/usr/local/mysql --with-library-version
 
12
8) make         
 
13
9) make install         (should have the root privileges)
 
14
10)mkdir /usr/local/mysql/var (if not already)
 
15
15) cd ../client
 
16
19) ./mysql   (start libarary version mysql)
 
17
mysql> create database db1;
 
18
mysql> use db1;
 
19
mysql> create table a123(i integer)
 
20
...... now you can work with library version....
 
21
 
 
22
 
 
23
 
 
24
 
 
25
 
 
26