Simple Database Backup Tool
- Go >= 1.15
- How to use the program via scan
go run ./cmd -scan
- How to run the program
go run ./cmd -source=<postgres/mysql/mssql> -export -user=<User Name> -db=<Database Name> -host=<Host> -port=<Port> -backupFilePath<Backup File Path> -backupName=<Backup Name>
- How to run the program
go run ./cmd -source=<postgres/mysql/mssql> -import -user=<User Name> -db=<Database Name> -host=<Host> -port=<Port> -backupFilePath<Backup File Path> -backupName=<Backup Name>
-
import
Flag: -import
Type: bool
Default: false -
export
Flag: -export
Type: bool
Default: false -
source
Flag: -source
Type: string
Default: null
Values: mysql, postgres, mssql -
user
Flag: -user
Type: string
Default: null -
path
Flag: -path
Type: string
Default: null -
db
Flag: -db
Type: string
Default: null -
host
Flag: -host
Type: string
Default: null -
port
Flag: -port
Type: int
Default: null -
binaryPath
Flag: -binaryPath
Type: string
Default: null -
backupName
Flag: -backupName
Type: string
Default: null -
backupFilePath
Flag: -backupFilePath
Type: string
Default: null
- How to import database
package main
import (
dummydump "github.com/sadihakan/dummy-dump"
"github.com/sadihakan/dummy-dump/config"
)
func main() {
dd, err := dummydump.New(&config.Config{
Source: <postgres\\mysql\\mssql>,
Import: true,
Export: false,
User: <user>,
Password: <password>,
DB: <database name>,
Host: <host>,
Port: <port>,
BackupFilePath: <path where to save or retrieve>,
BackupName: <backup name>,
BinaryPath: <binary path>,
})
// Check error
if err != nil {
panic(err)
}
// Call export import
dd.Check().Import()
}
- How to export database
package main
import (
dummydump "github.com/sadihakan/dummy-dump"
"github.com/sadihakan/dummy-dump/config"
)
func main() {
dd, err := dummydump.New(&config.Config{
Source: <postgres\\mysql\\mssql>,
Import: false,
Export: true,
User: <user>,
Password: <password>,
DB: <database name>,
Host: <host>,
Port: <port>,
BackupFilePath: <path where to save or retrieve>,
BackupName: <backup name>,
BinaryPath: <binary path>,
})
// Check error
if err != nil {
panic(err)
}
// Call export method
dd.Check().Export()
}
- How to check is there any error while run
package main
import (
dummydump "github.com/sadihakan/dummy-dump"
"github.com/sadihakan/dummy-dump/config"
)
func main() {
dd, err := dummydump.New(&config.Config{
Source: <postgres\\mysql\\mssql>,
Import: false,
Export: true,
User: <user>,
Password: <password>,
DB: <database name>,
Host: <host>,
Port: <port>,
BackupFilePath: <path where to save or retrieve>,
BackupName: <backup name>,
BinaryPath: <binary path>,
})
// Check error
if err != nil {
panic(err)
}
// Call export method with check error
if _, err = dd.Check().Export().Run(); err != nil {
panic(err)
}
}
Contributors names and contact info
ex. @sadihakan
ex. @onurcevik
This project is licensed under the sadihakan License - see the LICENSE.md file for details