Skip to content
This repository was archived by the owner on Jun 8, 2021. It is now read-only.

davidmartos96/go-flutter-plugin-sqlcipher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-flutter-plugin-sqlite

This Go package implements the host-side of the Flutter sqflite plugin.

Usage

Import as:

import "github.com/nealwon/go-flutter-plugin-sqlite"
import "database/sql" // for initialize

Then add the following option to your go-flutter application options:

flutter.AddPlugin(&sqflite.SqflitePlugin{
	VendorName:      "myOrganizationOrUsername",
	ApplicationName: "myApplicationName",
	databases:       make(map[int32]*sql.DB),
	databasePaths:   make(map[int32]string),
}),

Change the values of the Vendor and Application names to a custom and unique string, so it doesn't conflict with other organizations.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages