views:

53

answers:

3

hi Folks...

is there a portable version of MySQL for Linux available.

Thanks in advance..

Rajan

+1  A: 

MySQL Embedded Server is available for purchase.

Ignacio Vazquez-Abrams
thanks a lot for the suggestion Ignacio... is there a similar free package..
Rajan
I believe Firebird has something similar, but that's not quite MySQL. It is closer than SQLite though.
Ignacio Vazquez-Abrams
+3  A: 

You don't need to "install" mysql. Its binaries will run from any directory (given appropriate search paths etc), and its configuration can be specified entirely on the command-line, if necessary, bypassing the likes of /etc/my.cnf, or by specifying an alternative config file with arbitrary path.

Some engines can work with a readonly data directory (MyISAM, Archive), others may require a read/write data directory (Innodb) but that could be a temporary area or ramdisc.

There's nothing "un-portable" about MySQL.

MarkR
thanks MarkR...
Rajan
A: 

I advice you to use SQLite

UdarEC