Sorry, the diff of this file is not supported yet
+4
-16
| { | ||
| "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json", | ||
| "description": "Execute raw SQL queries against SQL Server, SQLite, PostgreSQL, MySQL, and MariaDB, then return the results.", | ||
| "description": "Execute raw SQL queries against SQL Server and return the results.", | ||
| "name": "io.github.KifoPL/RawSqlMcp", | ||
| "title": "Raw SQL MCP", | ||
| "version": "0.0.5", | ||
| "version": "0.0.4", | ||
| "packages": [ | ||
@@ -12,3 +12,3 @@ { | ||
| "identifier": "RawSqlMcp", | ||
| "version": "0.0.5", | ||
| "version": "0.0.4", | ||
| "runtimeHint": "dnx", | ||
@@ -20,16 +20,4 @@ "transport": { | ||
| { | ||
| "name": "RawSqlMcp__Databases__Default__Provider", | ||
| "description": "Database provider for the named database. Supported values: sqlserver, sqlite, postgres, postgresql, mysql, mariadb.", | ||
| "isRequired": false, | ||
| "isSecret": false | ||
| }, | ||
| { | ||
| "name": "RawSqlMcp__Databases__Default__ConnectionString", | ||
| "description": "Connection string for the named database.", | ||
| "isRequired": false, | ||
| "isSecret": true | ||
| }, | ||
| { | ||
| "name": "RawSqlMcp__ConnectionStrings__Default", | ||
| "description": "Obsolete. Use RawSqlMcp__Databases__Default__Provider and RawSqlMcp__Databases__Default__ConnectionString instead. Legacy connection strings are interpreted as SQL Server.", | ||
| "description": "Define a connection string named 'Default' - you can define multiple connection strings by adding more env vars with the same prefix and different names.", | ||
| "isRequired": false, | ||
@@ -36,0 +24,0 @@ "isSecret": true |
@@ -5,5 +5,3 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| <Default Extension="psmdcp" ContentType="application/vnd.openxmlformats-package.core-properties+xml" /> | ||
| <Default Extension="a" ContentType="application/octet" /> | ||
| <Default Extension="dll" ContentType="application/octet" /> | ||
| <Default Extension="dylib" ContentType="application/octet" /> | ||
| <Default Extension="json" ContentType="application/octet" /> | ||
@@ -13,5 +11,4 @@ <Default Extension="md" ContentType="application/octet" /> | ||
| <Default Extension="pdb" ContentType="application/octet" /> | ||
| <Default Extension="so" ContentType="application/octet" /> | ||
| <Default Extension="xml" ContentType="application/octet" /> | ||
| <Override PartName="//LICENSE" ContentType="application/octet" /> | ||
| </Types> |
+3
-3
@@ -5,3 +5,3 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| <id>RawSqlMcp</id> | ||
| <version>0.0.5</version> | ||
| <version>0.0.4</version> | ||
| <authors>KifoPL</authors> | ||
@@ -12,3 +12,3 @@ <license type="expression">AGPL-3.0-or-later</license> | ||
| <projectUrl>https://github.com/KifoPL/RawSqlMcp</projectUrl> | ||
| <description>A simple STDIO MCP server that executes raw SQL queries against SQL Server, SQLite, PostgreSQL, MySQL, and MariaDB. Use at your own risk. Always manually approve queries.</description> | ||
| <description>A simple STDIO MCP server that executes raw SQL queries against SQL Server. Use at your own risk. Always manually approve queries.</description> | ||
| <tags>mcp model-context-protocol sql raw-sql sql-mcp ai dnx community</tags> | ||
@@ -19,4 +19,4 @@ <packageTypes> | ||
| </packageTypes> | ||
| <repository type="git" url="https://github.com/KifoPL/RawSqlMcp" commit="4a2bb5675a424c517c969f24dc64a3d60e8a506d" /> | ||
| <repository type="git" url="https://github.com/KifoPL/RawSqlMcp" commit="02a127539321b205aba7973fbc627a83a25687e3" /> | ||
| </metadata> | ||
| </package> |
+9
-28
@@ -9,3 +9,3 @@ # Raw SQL MCP | ||
| Raw SQL MCP is a STDIO MCP server for executing raw SQL against SQL Server, SQLite, PostgreSQL, MySQL, and MariaDB. | ||
| Raw SQL MCP is a STDIO MCP server for executing raw SQL against SQL Server. | ||
@@ -35,32 +35,16 @@ > [!IMPORTANT] | ||
| Databases are configured with environment variables under `RawSqlMcp__Databases__`. | ||
| Connection strings are configured with environment variables under `RawSqlMcp__ConnectionStrings__`. | ||
| SQLite: | ||
| Configure the default SQL Server connection string: | ||
| ```bash | ||
| export RawSqlMcp__Databases__Local__Provider="sqlite" | ||
| export RawSqlMcp__Databases__Local__ConnectionString="Data Source=/absolute/path/app.db" | ||
| export RawSqlMcp__ConnectionStrings__Default="Server=localhost,1433;Database=master;User Id=sa;Password=Your_password123;TrustServerCertificate=True" | ||
| ``` | ||
| PostgreSQL: | ||
| Add more named databases by changing the final segment: | ||
| ```bash | ||
| export RawSqlMcp__Databases__Reporting__Provider="postgres" | ||
| export RawSqlMcp__Databases__Reporting__ConnectionString="Host=localhost;Port=5432;Database=reporting;Username=postgres;Password=postgres" | ||
| export RawSqlMcp__ConnectionStrings__Reporting="Server=localhost,1433;Database=Reporting;User Id=sa;Password=Your_password123;TrustServerCertificate=True" | ||
| ``` | ||
| MySQL/MariaDB: | ||
| ```bash | ||
| export RawSqlMcp__Databases__Shop__Provider="mysql" | ||
| export RawSqlMcp__Databases__Shop__ConnectionString="Server=localhost;Port=3306;Database=shop;User ID=mysql;Password=mysql" | ||
| ``` | ||
| SQL Server: | ||
| ```bash | ||
| export RawSqlMcp__Databases__Default__Provider="sqlserver" | ||
| export RawSqlMcp__Databases__Default__ConnectionString="Server=localhost,1433;Database=master;User Id=sa;Password=Your_password123;TrustServerCertificate=True" | ||
| ``` | ||
| Optional command timeout, in seconds: | ||
@@ -72,4 +56,2 @@ | ||
| The legacy `RawSqlMcp__ConnectionStrings__Default="..."` format is obsolete. It still works for compatibility and is interpreted as SQL Server. | ||
| ## Usage | ||
@@ -86,4 +68,3 @@ | ||
| "env": { | ||
| "RawSqlMcp__Databases__Default__Provider": "sqlserver", | ||
| "RawSqlMcp__Databases__Default__ConnectionString": "Server=localhost,1433;Database=master;User Id=sa;Password=Your_password123;TrustServerCertificate=True" | ||
| "RawSqlMcp__ConnectionStrings__Default": "Server=localhost,1433;Database=master;User Id=sa;Password=Your_password123;TrustServerCertificate=True" | ||
| } | ||
@@ -95,4 +76,4 @@ } | ||
| The server exposes tools for listing configured database names, reading schema metadata, and executing raw, parameterized, and scalar SQL queries. | ||
| The server exposes tools for listing configured database names, reading SQL Server schema metadata, and executing raw, parameterized, and scalar SQL queries. | ||
|  | ||
|  |
@@ -11,8 +11,5 @@ { | ||
| "dependencies": { | ||
| "Microsoft.Data.SqlClient": "7.0.2", | ||
| "Microsoft.Data.Sqlite": "10.0.9", | ||
| "Microsoft.Data.SqlClient": "7.0.1", | ||
| "Microsoft.Extensions.Hosting": "10.0.9", | ||
| "ModelContextProtocol": "1.4.0", | ||
| "MySqlConnector": "2.6.1", | ||
| "Npgsql": "10.0.3" | ||
| "ModelContextProtocol": "1.4.0" | ||
| }, | ||
@@ -31,7 +28,7 @@ "runtime": { | ||
| }, | ||
| "Microsoft.Data.SqlClient/7.0.2": { | ||
| "Microsoft.Data.SqlClient/7.0.1": { | ||
| "dependencies": { | ||
| "Microsoft.Bcl.Cryptography": "9.0.13", | ||
| "Microsoft.Data.SqlClient.Extensions.Abstractions": "7.0.2", | ||
| "Microsoft.Data.SqlClient.Internal.Logging": "7.0.2", | ||
| "Microsoft.Data.SqlClient.Extensions.Abstractions": "1.0.0", | ||
| "Microsoft.Data.SqlClient.Internal.Logging": "1.0.0", | ||
| "Microsoft.Data.SqlClient.SNI.runtime": "6.0.2", | ||
@@ -48,3 +45,3 @@ "Microsoft.Extensions.Caching.Memory": "9.0.13", | ||
| "assemblyVersion": "7.0.0.0", | ||
| "fileVersion": "7.0.2.26175" | ||
| "fileVersion": "7.0.1.26114" | ||
| } | ||
@@ -98,3 +95,3 @@ }, | ||
| "assemblyVersion": "7.0.0.0", | ||
| "fileVersion": "7.0.2.26175" | ||
| "fileVersion": "7.0.1.26114" | ||
| }, | ||
@@ -105,22 +102,22 @@ "runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll": { | ||
| "assemblyVersion": "7.0.0.0", | ||
| "fileVersion": "7.0.2.26175" | ||
| "fileVersion": "7.0.1.26114" | ||
| } | ||
| } | ||
| }, | ||
| "Microsoft.Data.SqlClient.Extensions.Abstractions/7.0.2": { | ||
| "Microsoft.Data.SqlClient.Extensions.Abstractions/1.0.0": { | ||
| "dependencies": { | ||
| "Microsoft.Data.SqlClient.Internal.Logging": "7.0.2" | ||
| "Microsoft.Data.SqlClient.Internal.Logging": "1.0.0" | ||
| }, | ||
| "runtime": { | ||
| "lib/netstandard2.0/Microsoft.Data.SqlClient.Extensions.Abstractions.dll": { | ||
| "assemblyVersion": "7.0.0.0", | ||
| "fileVersion": "7.0.2.26175" | ||
| "assemblyVersion": "1.0.0.0", | ||
| "fileVersion": "1.0.0.26076" | ||
| } | ||
| } | ||
| }, | ||
| "Microsoft.Data.SqlClient.Internal.Logging/7.0.2": { | ||
| "Microsoft.Data.SqlClient.Internal.Logging/1.0.0": { | ||
| "runtime": { | ||
| "lib/netstandard2.0/Microsoft.Data.SqlClient.Internal.Logging.dll": { | ||
| "assemblyVersion": "7.0.0.0", | ||
| "fileVersion": "7.0.2.26175" | ||
| "assemblyVersion": "1.0.0.0", | ||
| "fileVersion": "1.0.0.26076" | ||
| } | ||
@@ -148,20 +145,2 @@ } | ||
| }, | ||
| "Microsoft.Data.Sqlite/10.0.9": { | ||
| "dependencies": { | ||
| "Microsoft.Data.Sqlite.Core": "10.0.9", | ||
| "SQLitePCLRaw.bundle_e_sqlite3": "2.1.11", | ||
| "SQLitePCLRaw.core": "2.1.11" | ||
| } | ||
| }, | ||
| "Microsoft.Data.Sqlite.Core/10.0.9": { | ||
| "dependencies": { | ||
| "SQLitePCLRaw.core": "2.1.11" | ||
| }, | ||
| "runtime": { | ||
| "lib/net8.0/Microsoft.Data.Sqlite.dll": { | ||
| "assemblyVersion": "10.0.9.0", | ||
| "fileVersion": "10.0.926.27113" | ||
| } | ||
| } | ||
| }, | ||
| "Microsoft.Extensions.AI.Abstractions/10.5.2": { | ||
@@ -659,175 +638,2 @@ "runtime": { | ||
| }, | ||
| "MySqlConnector/2.6.1": { | ||
| "dependencies": { | ||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.9", | ||
| "Microsoft.Extensions.Logging.Abstractions": "10.0.9" | ||
| }, | ||
| "runtime": { | ||
| "lib/net10.0/MySqlConnector.dll": { | ||
| "assemblyVersion": "2.0.0.0", | ||
| "fileVersion": "2.6.1.0" | ||
| } | ||
| } | ||
| }, | ||
| "Npgsql/10.0.3": { | ||
| "dependencies": { | ||
| "Microsoft.Extensions.Logging.Abstractions": "10.0.9" | ||
| }, | ||
| "runtime": { | ||
| "lib/net10.0/Npgsql.dll": { | ||
| "assemblyVersion": "10.0.3.0", | ||
| "fileVersion": "10.0.3.0" | ||
| } | ||
| } | ||
| }, | ||
| "SQLitePCLRaw.bundle_e_sqlite3/2.1.11": { | ||
| "dependencies": { | ||
| "SQLitePCLRaw.lib.e_sqlite3": "2.1.11", | ||
| "SQLitePCLRaw.provider.e_sqlite3": "2.1.11" | ||
| }, | ||
| "runtime": { | ||
| "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { | ||
| "assemblyVersion": "2.1.11.2622", | ||
| "fileVersion": "2.1.11.2622" | ||
| } | ||
| } | ||
| }, | ||
| "SQLitePCLRaw.core/2.1.11": { | ||
| "runtime": { | ||
| "lib/netstandard2.0/SQLitePCLRaw.core.dll": { | ||
| "assemblyVersion": "2.1.11.2622", | ||
| "fileVersion": "2.1.11.2622" | ||
| } | ||
| } | ||
| }, | ||
| "SQLitePCLRaw.lib.e_sqlite3/2.1.11": { | ||
| "runtimeTargets": { | ||
| "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a": { | ||
| "rid": "browser-wasm", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-arm/native/libe_sqlite3.so": { | ||
| "rid": "linux-arm", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-arm64/native/libe_sqlite3.so": { | ||
| "rid": "linux-arm64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-armel/native/libe_sqlite3.so": { | ||
| "rid": "linux-armel", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-mips64/native/libe_sqlite3.so": { | ||
| "rid": "linux-mips64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-musl-arm/native/libe_sqlite3.so": { | ||
| "rid": "linux-musl-arm", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { | ||
| "rid": "linux-musl-arm64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-musl-riscv64/native/libe_sqlite3.so": { | ||
| "rid": "linux-musl-riscv64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-musl-s390x/native/libe_sqlite3.so": { | ||
| "rid": "linux-musl-s390x", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-musl-x64/native/libe_sqlite3.so": { | ||
| "rid": "linux-musl-x64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-ppc64le/native/libe_sqlite3.so": { | ||
| "rid": "linux-ppc64le", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-riscv64/native/libe_sqlite3.so": { | ||
| "rid": "linux-riscv64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-s390x/native/libe_sqlite3.so": { | ||
| "rid": "linux-s390x", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-x64/native/libe_sqlite3.so": { | ||
| "rid": "linux-x64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/linux-x86/native/libe_sqlite3.so": { | ||
| "rid": "linux-x86", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { | ||
| "rid": "maccatalyst-arm64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { | ||
| "rid": "maccatalyst-x64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/osx-arm64/native/libe_sqlite3.dylib": { | ||
| "rid": "osx-arm64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/osx-x64/native/libe_sqlite3.dylib": { | ||
| "rid": "osx-x64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/win-arm/native/e_sqlite3.dll": { | ||
| "rid": "win-arm", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/win-arm64/native/e_sqlite3.dll": { | ||
| "rid": "win-arm64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/win-x64/native/e_sqlite3.dll": { | ||
| "rid": "win-x64", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| }, | ||
| "runtimes/win-x86/native/e_sqlite3.dll": { | ||
| "rid": "win-x86", | ||
| "assetType": "native", | ||
| "fileVersion": "0.0.0.0" | ||
| } | ||
| } | ||
| }, | ||
| "SQLitePCLRaw.provider.e_sqlite3/2.1.11": { | ||
| "dependencies": { | ||
| "SQLitePCLRaw.core": "2.1.11" | ||
| }, | ||
| "runtime": { | ||
| "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { | ||
| "assemblyVersion": "2.1.11.2622", | ||
| "fileVersion": "2.1.11.2622" | ||
| } | ||
| } | ||
| }, | ||
| "System.Configuration.ConfigurationManager/9.0.13": { | ||
@@ -918,22 +724,22 @@ "dependencies": { | ||
| }, | ||
| "Microsoft.Data.SqlClient/7.0.2": { | ||
| "Microsoft.Data.SqlClient/7.0.1": { | ||
| "type": "package", | ||
| "serviceable": true, | ||
| "sha512": "sha512-zwv76lANFQQI6Gmp6ntkzMWIWVqm8Wf4Mz00AeGCk1n8HCi5afi6bNynSe18uI0xeL0n6J+Myjk9AiIsL5oSqw==", | ||
| "path": "microsoft.data.sqlclient/7.0.2", | ||
| "hashPath": "microsoft.data.sqlclient.7.0.2.nupkg.sha512" | ||
| "sha512": "sha512-9jZFXAJ2ThNYK7lhj2RhH7klXVNaWSvZpQncq3bPIOjmHBrdjwgeO4c8wucUVxQwFT8rAA13Z2F2jzoYR7ICDw==", | ||
| "path": "microsoft.data.sqlclient/7.0.1", | ||
| "hashPath": "microsoft.data.sqlclient.7.0.1.nupkg.sha512" | ||
| }, | ||
| "Microsoft.Data.SqlClient.Extensions.Abstractions/7.0.2": { | ||
| "Microsoft.Data.SqlClient.Extensions.Abstractions/1.0.0": { | ||
| "type": "package", | ||
| "serviceable": true, | ||
| "sha512": "sha512-Zx7z61fG2Nc6LdDn4jA7b5Aj1ABrljkOPRE31RvVUdjF6IgbG60leDUhMCafsnWFgaheiK3iqpLe+kbf5Z5L8Q==", | ||
| "path": "microsoft.data.sqlclient.extensions.abstractions/7.0.2", | ||
| "hashPath": "microsoft.data.sqlclient.extensions.abstractions.7.0.2.nupkg.sha512" | ||
| "sha512": "sha512-rlnxc0KfwDSbE8ZHntFnl8SCgOa9QtJZblMv2zXLhRwl1Je7fsdsVzxSjzzC4JMsfAK+jXJWyezRB8SxUY4BdA==", | ||
| "path": "microsoft.data.sqlclient.extensions.abstractions/1.0.0", | ||
| "hashPath": "microsoft.data.sqlclient.extensions.abstractions.1.0.0.nupkg.sha512" | ||
| }, | ||
| "Microsoft.Data.SqlClient.Internal.Logging/7.0.2": { | ||
| "Microsoft.Data.SqlClient.Internal.Logging/1.0.0": { | ||
| "type": "package", | ||
| "serviceable": true, | ||
| "sha512": "sha512-iqgYBbGSVy/DIYWjzmQOa964Kn4rs4wW5vg2IamqVK0fQqfTiILVR5hMK27XWqoyONtAZs+VxH354cPJBtSnbg==", | ||
| "path": "microsoft.data.sqlclient.internal.logging/7.0.2", | ||
| "hashPath": "microsoft.data.sqlclient.internal.logging.7.0.2.nupkg.sha512" | ||
| "sha512": "sha512-Kue/7CF8KNT9zozfr30C94dMZVZml3atqWZvQemSXvTau76tRdypzeKiBKXadqgbOME0UiQIyVTNo5WxCRNVNg==", | ||
| "path": "microsoft.data.sqlclient.internal.logging/1.0.0", | ||
| "hashPath": "microsoft.data.sqlclient.internal.logging.1.0.0.nupkg.sha512" | ||
| }, | ||
@@ -947,16 +753,2 @@ "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": { | ||
| }, | ||
| "Microsoft.Data.Sqlite/10.0.9": { | ||
| "type": "package", | ||
| "serviceable": true, | ||
| "sha512": "sha512-/eBwiZPcNisn0qZX+Zk4YCftlK/vnoWqv7hHnmSk8MjPxFdYYkmPObpogT0MfCCWN6oAIZnMCo0SoOtZlbbmgQ==", | ||
| "path": "microsoft.data.sqlite/10.0.9", | ||
| "hashPath": "microsoft.data.sqlite.10.0.9.nupkg.sha512" | ||
| }, | ||
| "Microsoft.Data.Sqlite.Core/10.0.9": { | ||
| "type": "package", | ||
| "serviceable": true, | ||
| "sha512": "sha512-iZrONyMKPjxfVZnUktqO30QjzNwAGH+AxM61s8lKQnVhgbQ3bn0hiXI129ZmVicEbIcwljyy2OVsIYUR51ZHKQ==", | ||
| "path": "microsoft.data.sqlite.core/10.0.9", | ||
| "hashPath": "microsoft.data.sqlite.core.10.0.9.nupkg.sha512" | ||
| }, | ||
| "Microsoft.Extensions.AI.Abstractions/10.5.2": { | ||
@@ -1235,44 +1027,2 @@ "type": "package", | ||
| }, | ||
| "MySqlConnector/2.6.1": { | ||
| "type": "package", | ||
| "serviceable": true, | ||
| "sha512": "sha512-MzNSfnHWBc0Mo3zVbYxG+556zuex9obs8NYtwcPCwFahel40e49stH+osjX4k/doEHp4LT/zTtGdax4nlGWhcw==", | ||
| "path": "mysqlconnector/2.6.1", | ||
| "hashPath": "mysqlconnector.2.6.1.nupkg.sha512" | ||
| }, | ||
| "Npgsql/10.0.3": { | ||
| "type": "package", | ||
| "serviceable": true, | ||
| "sha512": "sha512-7nb5YzXuvWWJxB0J8DiyL3we+X4FOctZrt0fIBnucOIaIevFEEwGQVZKtiu9olXdlNAK1eNgqSral6r/jlhI4w==", | ||
| "path": "npgsql/10.0.3", | ||
| "hashPath": "npgsql.10.0.3.nupkg.sha512" | ||
| }, | ||
| "SQLitePCLRaw.bundle_e_sqlite3/2.1.11": { | ||
| "type": "package", | ||
| "serviceable": true, | ||
| "sha512": "sha512-DC4nA7yWnf4UZdgJDF+9Mus4/cb0Y3Sfgi3gDnAoKNAIBwzkskNAbNbyu+u4atT0ruVlZNJfwZmwiEwE5oz9LQ==", | ||
| "path": "sqlitepclraw.bundle_e_sqlite3/2.1.11", | ||
| "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.11.nupkg.sha512" | ||
| }, | ||
| "SQLitePCLRaw.core/2.1.11": { | ||
| "type": "package", | ||
| "serviceable": true, | ||
| "sha512": "sha512-PK0GLFkfhZzLQeR3PJf71FmhtHox+U3vcY6ZtswoMjrefkB9k6ErNJEnwXqc5KgXDSjige2XXrezqS39gkpQKA==", | ||
| "path": "sqlitepclraw.core/2.1.11", | ||
| "hashPath": "sqlitepclraw.core.2.1.11.nupkg.sha512" | ||
| }, | ||
| "SQLitePCLRaw.lib.e_sqlite3/2.1.11": { | ||
| "type": "package", | ||
| "serviceable": true, | ||
| "sha512": "sha512-Ev2ytaXiOlWZ4b3R67GZBsemTINslLD1DCJr2xiacpn4tbapu0Q4dHEzSvZSMnVWeE5nlObU3VZN2p81q3XOYQ==", | ||
| "path": "sqlitepclraw.lib.e_sqlite3/2.1.11", | ||
| "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.11.nupkg.sha512" | ||
| }, | ||
| "SQLitePCLRaw.provider.e_sqlite3/2.1.11": { | ||
| "type": "package", | ||
| "serviceable": true, | ||
| "sha512": "sha512-Y/0ZkR+r0Cg3DQFuCl1RBnv/tmxpIZRU3HUvelPw6MVaKHwYYR8YNvgs0vuNuXCMvlyJ+Fh88U1D4tah1tt6qw==", | ||
| "path": "sqlitepclraw.provider.e_sqlite3/2.1.11", | ||
| "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.11.nupkg.sha512" | ||
| }, | ||
| "System.Configuration.ConfigurationManager/9.0.13": { | ||
@@ -1279,0 +1029,0 @@ "type": "package", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet