Skip to content

Claude/fix sqlite warning zwa8 n#33

Merged
NerdsCorp merged 2 commits into
mainfrom
claude/fix-sqlite-warning-zwa8N
Dec 28, 2025
Merged

Claude/fix sqlite warning zwa8 n#33
NerdsCorp merged 2 commits into
mainfrom
claude/fix-sqlite-warning-zwa8N

Conversation

@NerdsCorp
Copy link
Copy Markdown
Owner

No description provided.

The connection strings were using old Mono.Data.Sqlite syntax with
Version=3 and New=True parameters which are not compatible with
Microsoft.Data.Sqlite. Updated to use the correct syntax:
- Removed Version=3 parameter from existing database connection
- Changed New=True to Mode=ReadWriteCreate for new database creation

This resolves the CS0234 and CS0246 compilation errors.
Changed from Microsoft.Data.Sqlite back to System.Data.SQLite package:
- Updated package reference to System.Data.SQLite.Core version 1.0.119
- Changed all SqliteConnection/SqliteCommand/SqliteParameter references
  to SQLiteConnection/SQLiteCommand/SQLiteParameter (capital SQL)
- Reverted connection strings to use Version=3 parameter syntax
- Updated namespace from Microsoft.Data.Sqlite to System.Data.SQLite

This resolves build errors and maintains compatibility with the
traditional SQLite provider for .NET.
@NerdsCorp NerdsCorp merged commit a9d8db7 into main Dec 28, 2025
1 check passed
@NerdsCorp NerdsCorp deleted the claude/fix-sqlite-warning-zwa8N branch December 28, 2025 20:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants