Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/vicdeo/go-obfuscate/mysqldump

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/vicdeo/go-obfuscate/mysqldump

  • v0.0.0-20220616210117-5252084f98fc
  • Source
  • Go
  • Socket score

Version published
Created
Source

Go MYSQL Dump

Create MYSQL dumps in Go without the mysqldump CLI as a dependancy.

Simple Example

package main

import (
  "database/sql"
  "fmt"

  "github.com/BrandonRoehl/go-mysqldump"
  "github.com/go-sql-driver/mysql"
)

func main() {
  // Open connection to database
  config := mysql.NewConfig()
  config.User = "your-user"
  config.Passwd = "your-pw"
  config.DBName = "your-db"
  config.Net = "tcp"
  config.Addr = "your-hostname:your-port"

  dumpDir := "dumps"  // you should create this directory
  dumpFilenameFormat := fmt.Sprintf("%s-20060102T150405", config.DBName)   // accepts time layout string and add .sql at the end of file

  db, err := sql.Open("mysql", config.FormatDSN())
  if err != nil {
    fmt.Println("Error opening database: ", err)
    return
  }

  // Register database with mysqldump
  dumper, err := mysqldump.Register(db, dumpDir, dumpFilenameFormat)
  if err != nil {
    fmt.Println("Error registering databse:", err)
    return
  }

  // Dump database to file
  err := dumper.Dump()
  if err != nil {
    fmt.Println("Error dumping:", err)
    return
  }
  fmt.Printf("File is saved to %s", dumpFilenameFormat)

  // Close dumper, connected database and file stream.
  dumper.Close()
}

GoDoc Build Status

FAQs

Package last updated on 16 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc