diff options
Diffstat (limited to 'qlite/src/row.vala')
-rw-r--r-- | qlite/src/row.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qlite/src/row.vala b/qlite/src/row.vala index 8854656f..be459719 100644 --- a/qlite/src/row.vala +++ b/qlite/src/row.vala @@ -56,12 +56,12 @@ public class RowIterator { private Database db; private Statement stmt; - public RowIterator.from_query_builder(Database db, QueryBuilder query) throws DatabaseError { + public RowIterator.from_query_builder(Database db, QueryBuilder query) { this.db = db; this.stmt = query.prepare(); } - public RowIterator(Database db, string sql, string[]? args = null) throws DatabaseError { + public RowIterator(Database db, string sql, string[]? args = null) { this.db = db; this.stmt = db.prepare(sql); if (args != null) { @@ -111,4 +111,4 @@ public class RowOption { } } -}
\ No newline at end of file +} |