Skip to content

Latest commit

 

History

History
36 lines (31 loc) · 648 Bytes

README.md

File metadata and controls

36 lines (31 loc) · 648 Bytes

MariaDBDump

MariaDb veritabanı için sql scripti oluşturur.

Veritabanı scripti oluşturulan veritabanı nesneleri

  • Table
  • Table Index(primary key, unique key, plan, fulltext)
  • Table Constraints (foreign key, check constraint)
  • View
  • Procedure
$options = [
    'database' => [
        'host' => '',
        'dbname' => '',
        'user' => '',
        'password' => ''
    ]
];

$mariadbdump = new Mariadbdump($options);

try
{
    echo $mariadbdump->dump(__DIR__ . '/backup/');
}
catch (SaveFileException $e)
{
    echo 'Veritabanı scripti dosyaya kaydedilemedi!';
}
catch (Exception $e)
{
    echo $e->getMessage();
}