We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am thinking about limit all other tables
//export table4
use Ifsnop\Mysqldump as IMysqldump; try { $dump = new IMysqldump\Mysqldump('mysql:host=localhost;dbname=aaaa', 'bbbb', 'cccc'); $dump->setTableLimits(array( 'table1' => 0, 'table2' => 0, 'table3' => 0, )); $dump->start('file/dump.sql'); } catch (\Exception $e) { echo 'mysqldump-php error: ' . $e->getMessage(); }
is that correct?
The text was updated successfully, but these errors were encountered:
Try 'include-tables' => array() option.
'include-tables' => array()
https://github.com/ifsnop/mysqldump-php#dump-settings
Sorry, something went wrong.
No branches or pull requests
I am thinking about limit all other tables
//export table4
is that correct?
The text was updated successfully, but these errors were encountered: