Skip to content

Commit 942fa21

Browse files
committed
Return Result from SQLitePreparedStatement.Reset
1 parent d715e76 commit 942fa21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Runtime/SQLitePreparedStatement.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ public SQLitePreparedStatement(SQLiteConnection db, string statement)
5656
Dispose();
5757
}
5858

59-
public void Reset()
59+
public SQLite3.Result Reset()
6060
{
6161
ThrowIfDisposed();
62-
SQLite3.Reset(_preparedStatement);
62+
return SQLite3.Reset(_preparedStatement);
6363
}
6464

6565
public SQLite3.Result Bind(int index, bool value)

0 commit comments

Comments
 (0)