Re: Embedded mysql for simple user programs

2004-11-04 Thread txemi
Thanks, I did have a look at it and it seems that I could use embedded mysql with no conffiles at all. :-) I like it becouse I would prefer application configuring mysql based on its own config or status and not having spread conffiles for each used library. Besides, various applications using this

Re: Embedded mysql for simple user programs

2004-11-04 Thread txemi
Aha, what solution would you recommend? I would like some open and free product working in linux and win, easy to interact with other products and some relation among tables capabilitie (foreign index, constraint...). I focused on sqlite because It seem to match this requirements and it is alread

Re: Embedded mysql for simple user programs

2004-11-04 Thread Gleb Paharenko
Hi. You may tell MySQL where the data files are stored in the argc, when you are calling mysql_server_init. Also you may put other server variables into this array. I think, MySQL can do most tasks, which you are looking for. See: http://dev.mysql.com/doc/mysql/en/Server_system_varia

Re: Embedded mysql for simple user programs

2004-11-04 Thread mos
At 09:14 AM 11/4/2004, you wrote: I cannot see in mysql online manual Embedded example (http://dev.mysql.com/doc/mysql/en/libmysqld_example.html) any pathname telling where de database will be saved in disk. So I suppose it must be some existing database especified on some configuration file. Could