Skip to content

Commit 400fa0f

Browse files
author
alexander.marek
committed
praeclarum#284 - Fixed wrong binding of guid as byte array
1 parent 9ffda75 commit 400fa0f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/SQLite.cs

-1
Original file line numberDiff line numberDiff line change
@@ -3036,7 +3036,6 @@ internal static void BindParameter (Sqlite3Statement stmt, int index, object val
30363036
else {
30373037
SQLite3.BindText (stmt, index, ((Guid)value).ToString (), 72, NegativePointer);
30383038
}
3039-
SQLite3.BindText (stmt, index, ((Guid)value).ToString (), 72, NegativePointer);
30403039
}
30413040
else if (value is Uri) {
30423041
SQLite3.BindText (stmt, index, ((Uri)value).ToString (), -1, NegativePointer);

0 commit comments

Comments
 (0)