by =?ISO-8859-1?Q?Arne_Vajh=F8j?= <arne@[EMAIL PROTECTED]
>
Mar 29, 2008 at 07:15 PM
Mr. X. wrote:
> ... I meant :
> Where is physically the database file exists,
> and how can any external program with simple connection string connect
to
> the specific db ?
For MyISAM tables you get:
MySQL data dir / database name / table name . MYD for data
MySQL data dir / database name / table name . MYI for indexes
For InnoDB tables the data get stored in the data file you define
in the MySQL config file.
Arne