-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Import from SQL file - feature request #1006
Comments
With the experience of importing the database file, the better way to do this is to use the SQL command line or other database management tools to ensure the correct result. |
Hey @catfan 🤓 ... I was thinking about this and experimented with something that works. //First, we load the db file into a variable
$db_sql_file = file_get_contents("db_file.sql");
//then we run query on it to perform whatever instructions are in the SQL file against the database instance we're connected to😄
$db_instance->query($db_sql_file); Is this something that can be improved on? You may share your opinion or ideas whenever time allows.
|
@blessedjasonmwanza Yes, it can simply work in some cases. However, the result is not guaranteed if with a different setting, database version, platform, or others. |
Oh - I see, 🤔 ... Makes a lot of sense 🤓 . Thank you. |
Information
Description
Detail Code example
Response
The text was updated successfully, but these errors were encountered: