You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A method accepting a string with many SQL statements. File reading isn't involved and is done with file_get_contents. Not good for huge dumps.
A method accepting a file path. There we can open a file and seek it till next SQL statement executing previous one. Would be memory efficient but could be a bit slow.
For example,
$b->executeSqlFromFile()
.Need to come up with a good name. Variants:
loadDump()
loadSql()
executeSqlFromFile()
executeSql()
The text was updated successfully, but these errors were encountered: