├── License.txt ├── README.md ├── ReleaseNotes.md ├── assembly ├── SQLite.Interop.dll ├── archive │ ├── SQLite.Interop.dll │ ├── System.Data.SQLite.dll │ └── System.Data.SQLite.xml ├── arm64 │ ├── SQLite.Interop.dll │ └── System.Data.SQLite.dll ├── linux-arm64 │ ├── SQLite.Interop.dll │ ├── libe_sqlite3.so │ └── readme.txt ├── linux-x64 │ ├── SQLite.Interop.dll.so │ └── System.Data.SQLite.dll ├── net20 │ ├── SQLite.Interop.dll │ └── System.Data.SQLite.dll └── net46 │ ├── SQLite.Interop.dll │ └── System.Data.SQLite.dll ├── changelog.md ├── docs ├── Close-MySQLiteDB.md ├── Convert-MySQLiteByteArray.md ├── ConvertFrom-MySQLiteDB.md ├── ConvertTo-MySQLiteDB.md ├── Export-MySQLiteDB.md ├── Get-MySQLiteDB.md ├── Get-MySQLiteTable.md ├── Get-SQLiteVersion.md ├── Import-MySQLiteDB.md ├── Invoke-MySQLiteQuery.md ├── New-MySQLiteDB.md ├── New-MySQLiteDBTable.md └── Open-MySQLiteDB.md ├── en-us └── mySQLite-help.xml ├── formats ├── mySQLiteDB.format.ps1xml └── mySQLiteTableDetail.format.ps1xml ├── functions ├── Close-MySQLiteDB.ps1 ├── Convert-MySQLiteByteArray.ps1 ├── ConvertFrom-MySQLiteDB.ps1 ├── ConvertTo-MySQLiteDB.ps1 ├── Export-MySQLiteDB.ps1 ├── Get-MySQLiteDB.ps1 ├── Get-MySQLiteTable.ps1 ├── Get-SQLiteVersion.ps1 ├── Import-MySQLiteDB.ps1 ├── Invoke-MySQLiteQuery.ps1 ├── New-MySQLiteDB.ps1 ├── New-MySQLiteDBTable.ps1 ├── Open-MySQLiteDB.ps1 └── private.ps1 ├── images ├── db.png └── dbbrowser.png ├── mySQLite.psd1 ├── mySQLite.psm1 └── samples ├── ProcessData.db ├── inventory.db ├── sales.db └── sysinfo.db /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /assembly/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/SQLite.Interop.dll -------------------------------------------------------------------------------- /assembly/archive/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/archive/SQLite.Interop.dll -------------------------------------------------------------------------------- /assembly/archive/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/archive/System.Data.SQLite.dll -------------------------------------------------------------------------------- /assembly/archive/System.Data.SQLite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/archive/System.Data.SQLite.xml -------------------------------------------------------------------------------- /assembly/arm64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/arm64/SQLite.Interop.dll -------------------------------------------------------------------------------- /assembly/arm64/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/arm64/System.Data.SQLite.dll -------------------------------------------------------------------------------- /assembly/linux-arm64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/linux-arm64/SQLite.Interop.dll -------------------------------------------------------------------------------- /assembly/linux-arm64/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/linux-arm64/libe_sqlite3.so -------------------------------------------------------------------------------- /assembly/linux-arm64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/linux-arm64/readme.txt -------------------------------------------------------------------------------- /assembly/linux-x64/SQLite.Interop.dll.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/linux-x64/SQLite.Interop.dll.so -------------------------------------------------------------------------------- /assembly/linux-x64/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/linux-x64/System.Data.SQLite.dll -------------------------------------------------------------------------------- /assembly/net20/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/net20/SQLite.Interop.dll -------------------------------------------------------------------------------- /assembly/net20/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/net20/System.Data.SQLite.dll -------------------------------------------------------------------------------- /assembly/net46/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/net46/SQLite.Interop.dll -------------------------------------------------------------------------------- /assembly/net46/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/assembly/net46/System.Data.SQLite.dll -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/Close-MySQLiteDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/Close-MySQLiteDB.md -------------------------------------------------------------------------------- /docs/Convert-MySQLiteByteArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/Convert-MySQLiteByteArray.md -------------------------------------------------------------------------------- /docs/ConvertFrom-MySQLiteDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/ConvertFrom-MySQLiteDB.md -------------------------------------------------------------------------------- /docs/ConvertTo-MySQLiteDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/ConvertTo-MySQLiteDB.md -------------------------------------------------------------------------------- /docs/Export-MySQLiteDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/Export-MySQLiteDB.md -------------------------------------------------------------------------------- /docs/Get-MySQLiteDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/Get-MySQLiteDB.md -------------------------------------------------------------------------------- /docs/Get-MySQLiteTable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/Get-MySQLiteTable.md -------------------------------------------------------------------------------- /docs/Get-SQLiteVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/Get-SQLiteVersion.md -------------------------------------------------------------------------------- /docs/Import-MySQLiteDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/Import-MySQLiteDB.md -------------------------------------------------------------------------------- /docs/Invoke-MySQLiteQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/Invoke-MySQLiteQuery.md -------------------------------------------------------------------------------- /docs/New-MySQLiteDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/New-MySQLiteDB.md -------------------------------------------------------------------------------- /docs/New-MySQLiteDBTable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/New-MySQLiteDBTable.md -------------------------------------------------------------------------------- /docs/Open-MySQLiteDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/docs/Open-MySQLiteDB.md -------------------------------------------------------------------------------- /en-us/mySQLite-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/en-us/mySQLite-help.xml -------------------------------------------------------------------------------- /formats/mySQLiteDB.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/formats/mySQLiteDB.format.ps1xml -------------------------------------------------------------------------------- /formats/mySQLiteTableDetail.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/formats/mySQLiteTableDetail.format.ps1xml -------------------------------------------------------------------------------- /functions/Close-MySQLiteDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/Close-MySQLiteDB.ps1 -------------------------------------------------------------------------------- /functions/Convert-MySQLiteByteArray.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/Convert-MySQLiteByteArray.ps1 -------------------------------------------------------------------------------- /functions/ConvertFrom-MySQLiteDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/ConvertFrom-MySQLiteDB.ps1 -------------------------------------------------------------------------------- /functions/ConvertTo-MySQLiteDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/ConvertTo-MySQLiteDB.ps1 -------------------------------------------------------------------------------- /functions/Export-MySQLiteDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/Export-MySQLiteDB.ps1 -------------------------------------------------------------------------------- /functions/Get-MySQLiteDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/Get-MySQLiteDB.ps1 -------------------------------------------------------------------------------- /functions/Get-MySQLiteTable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/Get-MySQLiteTable.ps1 -------------------------------------------------------------------------------- /functions/Get-SQLiteVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/Get-SQLiteVersion.ps1 -------------------------------------------------------------------------------- /functions/Import-MySQLiteDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/Import-MySQLiteDB.ps1 -------------------------------------------------------------------------------- /functions/Invoke-MySQLiteQuery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/Invoke-MySQLiteQuery.ps1 -------------------------------------------------------------------------------- /functions/New-MySQLiteDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/New-MySQLiteDB.ps1 -------------------------------------------------------------------------------- /functions/New-MySQLiteDBTable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/New-MySQLiteDBTable.ps1 -------------------------------------------------------------------------------- /functions/Open-MySQLiteDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/Open-MySQLiteDB.ps1 -------------------------------------------------------------------------------- /functions/private.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/functions/private.ps1 -------------------------------------------------------------------------------- /images/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/images/db.png -------------------------------------------------------------------------------- /images/dbbrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/images/dbbrowser.png -------------------------------------------------------------------------------- /mySQLite.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/mySQLite.psd1 -------------------------------------------------------------------------------- /mySQLite.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/mySQLite.psm1 -------------------------------------------------------------------------------- /samples/ProcessData.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/samples/ProcessData.db -------------------------------------------------------------------------------- /samples/inventory.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/samples/inventory.db -------------------------------------------------------------------------------- /samples/sales.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/samples/sales.db -------------------------------------------------------------------------------- /samples/sysinfo.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/MySQLite/HEAD/samples/sysinfo.db --------------------------------------------------------------------------------