Re: Import .sql file via PHP
- From: "Stephen Harris" <cyberguard1048-usenet@xxxxxxxxx>
- Date: Mon, 30 May 2005 06:35:20 GMT
"Jamie Meyers" <gtg061q@xxxxxxxxxxxxxxx> wrote in message
news:d7e8ge$26g$1@xxxxxxxxxxxxxxxxxxxxxxx
> Does anyone know how to import a .sql dump file into a mysql database
> using php. I know how to do it using commandline, mysql < test.sql, but I
> am writing an install script, and was wondering if it is possible to do it
> this way. If not, do you know of any parser that will do all the
> importing/table creation the .sql file defines? Any response is much
> appreciated.
>
> Thanks,
> Jamie
I saw these instructions in the install text for PBS, an AMP program.
"Now we put data in our fresh database. In directory pbs/dump is a dump with
example data. Use mysql dbname < pbssample_english.dmp.
(dbname is $db_name in environment.php3)"
I think the dump delivered database structure for a help desk program,
PBS. I don't know much about this so you got "any response".
Another example:
a..
1.. go to the directory where the command mysql is recognized and type the
commands displayed in bold below:
a.. prompt$ mysql
b.. mysql> create database allonto;
c.. mysql> quit
d.. prompt$ mysql allonto < allonto.dmp
1.. Run the following command to dump your Mysql database:
2.. mysqldump -f -t -n >bacula-backup.dmp>
a..
.
- Follow-Ups:
- Re: Import .sql file via PHP
- From: Jamie Meyers
- Re: Import .sql file via PHP
- References:
- Import .sql file via PHP
- From: Jamie Meyers
- Import .sql file via PHP
- Prev by Date: Import .sql file via PHP
- Next by Date: Re: Import .sql file via PHP
- Previous by thread: Import .sql file via PHP
- Next by thread: Re: Import .sql file via PHP
- Index(es):
Relevant Pages
|