All Projects → dg → Mysql Dump

dg / Mysql Dump

Licence: bsd-3-clause
MySQL Dump Utility

Labels

Projects that are alternatives of or similar to Mysql Dump

Restic Backup Docker
A docker container to automate backups with restic
Stars: ✭ 142 (-20.22%)
Mutual labels:  backup
Imapbackup
A Python script for incremental backups of IMAP mailboxes
Stars: ✭ 156 (-12.36%)
Mutual labels:  backup
System Tar And Restore
Backup and Restore your system using tar or Transfer it with rsync
Stars: ✭ 170 (-4.49%)
Mutual labels:  backup
Kirby Autogit
⬢ Saves every change made via Kirby Panel to a Git repository
Stars: ✭ 147 (-17.42%)
Mutual labels:  backup
Rsync Incremental Backup
Configurable bash script to send incremental backups of your data to a local or remote target
Stars: ✭ 150 (-15.73%)
Mutual labels:  backup
Cloneapp
📦Easily Backup & Restore Windows Programs Settings
Stars: ✭ 163 (-8.43%)
Mutual labels:  backup
Cognito Backup Restore
AIO Tool for backing up and restoring AWS Cognito User Pools
Stars: ✭ 142 (-20.22%)
Mutual labels:  backup
Rsnapshot
a tool for backing up your data using rsync (if you want to get help, use https://lists.sourceforge.net/lists/listinfo/rsnapshot-discuss)
Stars: ✭ 2,335 (+1211.8%)
Mutual labels:  backup
Flares
Flares 🔥 is a CloudFlare DNS backup tool
Stars: ✭ 156 (-12.36%)
Mutual labels:  backup
Docker S3 Volume
Docker container with a data volume from s3.
Stars: ✭ 166 (-6.74%)
Mutual labels:  backup
M Wiz
Install Metasploit And Repair Metasploit In Termux With Easy Steps
Stars: ✭ 148 (-16.85%)
Mutual labels:  backup
Grafcli
Grafana CLI for quick and easy dashboards management.
Stars: ✭ 152 (-14.61%)
Mutual labels:  backup
Knoxite
A data storage & backup system
Stars: ✭ 165 (-7.3%)
Mutual labels:  backup
Elephant Shed
PostgreSQL Management Appliance
Stars: ✭ 146 (-17.98%)
Mutual labels:  backup
Restic
Fast, secure, efficient backup program
Stars: ✭ 15,105 (+8385.96%)
Mutual labels:  backup
Piadvanced
This started as a custom install for my pihole!
Stars: ✭ 144 (-19.1%)
Mutual labels:  backup
Jazigo
Jazigo is a tool written in Go for retrieving configuration for multiple devices, similar to rancid, fetchconfig, oxidized, Sweet.
Stars: ✭ 163 (-8.43%)
Mutual labels:  backup
Gitlabber
Gitlabber - clones or pulls entire groups tree from gitlab
Stars: ✭ 176 (-1.12%)
Mutual labels:  backup
Discord Backup
📦 Complete framework to facilitate server backup using discord.js v12
Stars: ✭ 172 (-3.37%)
Mutual labels:  backup
Aphotomanager
Manage local photos on Android: gallery, geotag with photomap, privacy, tags, find, sort, view, copy, send, ... .
Stars: ✭ 164 (-7.87%)
Mutual labels:  backup

MySQL Dump Utility

This is a backup utility used to dump a database for backup or transfer to another MySQL server. The dump typically contains SQL statements to create the table, populate it, or both.

It requires PHP 5.6 (release 1.5) or PHP 7.1 or later.

Usage

Create MySQLi object and pass it to the MySQLDump:

$db = new mysqli('localhost', 'root', 'password', 'database');
$dump = new MySQLDump($db);

You can optionally specify how each table or view should be exported:

$dump->tables['search_cache'] = MySQLDump::DROP | MySQLDump::CREATE;
$dump->tables['log'] = MySQLDump::NONE;

Then simply call save() or write():

$dump->save('export.sql.gz');

Import dump from file to database this way:

$import = new MySQLImport($db);
$import->load('dump.sql.gz');

If you like it, please make a donation now. Thank you!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].