ifsnop / mysqldump-php

PHP version of mysqldump cli that comes with MySQL
https://github.com/ifsnop/mysqldump-php
GNU General Public License v3.0
1.25k stars 300 forks source link

Add option to disable database creation statement #232

Closed underdpt closed 1 year ago

underdpt commented 3 years ago

This PR aims to mimic the mysqldump option no-create-db.

This is useful if for example you only want to dump the data but not the schema, without this option it would dump the data but with the CREATE DATABASE... and USE DATABASE statements, which is undesirable.

I'm sorry I wasn't capabale of adding a test.