-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmySQLite.psd1
More file actions
86 lines (75 loc) · 3.16 KB
/
Copy pathmySQLite.psd1
File metadata and controls
86 lines (75 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Module manifest for module 'mySQLite'
@{
RootModule = 'mySQLite.psm1'
ModuleVersion = '1.0.0'
CompatiblePSEditions = @("Desktop","Core")
GUID = '49ac2120-f30e-4244-ac8b-4d18fa9ae9aa'
Author = 'Jeff Hicks'
CompanyName = 'JDH Information Technology Solutions, Inc.'
Copyright = '(c) 2019-2025 JDH Information Technology Solutions, Inc.'
Description = 'A set of PowerShell commands for working with SQLite database files. This is a simple alternative to installing any version of SQL Server on your desktop. Note that this module will only work on x64 versions Windows and Linux platforms.'
PowerShellVersion = '5.1'
DotNetFrameworkVersion = '4.6'
#ProcessorArchitecture = 'AMD64'
FormatsToProcess = @(
'formats\mySQLiteDB.format.ps1xml',
'formats\mySQLiteTableDetail.format.ps1xml'
)
FunctionsToExport = @(
'Invoke-MySQLiteQuery',
'New-MySQLiteDB',
'New-MySQLiteDBTable',
'ConvertTo-MySQLiteDB',
'Get-MySQLiteTable',
'ConvertFrom-MySQLiteDB',
'Get-MySQLiteDB',
'Open-MySQLiteDB',
'Close-MySQLiteDB',
'Export-MySQLiteDB',
'Import-MySQLiteDB',
'Convert-MySQLiteByteArray',
'Get-SQLiteVersion'
)
CmdletsToExport = @()
AliasesToExport = @(
'New-DB',
'ndb',
'New-DBTable',
'ndbt',
'iq',
'todb',
'gtb',
'Get-DBTable',
'ConvertTo-DB',
'ConvertFrom-DB',
'Get-DB',
'Open-DB',
'Close-DB'
)
PrivateData = @{
PSData = @{
Tags = @('sqlite', 'database','linux')
LicenseUri = 'https://github.com/jdhitsolutions/MySQLite/blob/master/License.txt'
ProjectUri = 'https://github.com/jdhitsolutions/MySQLite'
# IconUri = ''
ReleaseNotes = @"
# Changelog for MySQLite
## v[1.0.0] - 2025-05-30 15:30:33
### Added
- Added assembly for ARM64 on Windows.
- Added new sample database `ProcessData.db` to the `samples` folder.
### Changed
- Updated `Import-MySqliteDB` and `Export-MySqliteDB` to better handle importing exported databases. __Breaking changes as the export process creates a different JSON file.__
- Changed `Write-Verbose` commands to 'Write-Debug` in private helper functions.
- Revised the PRAGMA query `Get-MySqliteDB` to get all database information in a single query.
- Updated`Get-MySqliteDB` to display missing database information and extended the custom object to include a few more properties.
- Updated verbose messaging.
- Updated online help links.
- Updated `README.md`.
### Fixed
- Updated error handling in `Invoke-MySqliteQuery` to write errors instead of warnings. __This is a breaking change__. [[Issue #25](https://github.com/jdhitsolutions/mySQLite/issues/25)]
- Updated `Get-MySqliteDB` to handle database files stored in OneDrive. [[Issue #27](https://github.com/jdhitsolutions/mySQLite/issues/27)]
"@
}
}
}