Skip to content

Commit

Permalink
Fix parameter type mapping for Sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
Marusyk authored and bricelam committed Feb 4, 2022
1 parent 7b11078 commit 9ae9c2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.Data.Sqlite.Core/SqliteValueBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public virtual void Bind()
{ typeof(long), SqliteType.Integer },
{ typeof(sbyte), SqliteType.Integer },
{ typeof(short), SqliteType.Integer },
{ typeof(string), SqliteType.Integer },
{ typeof(string), SqliteType.Text },
{ typeof(TimeSpan), SqliteType.Text },
{ typeof(uint), SqliteType.Integer },
{ typeof(ulong), SqliteType.Integer },
Expand Down

0 comments on commit 9ae9c2b

Please sign in to comment.