diff options
-rw-r--r-- | libsqlitepp/sqlite-connection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsqlitepp/sqlite-connection.cpp b/libsqlitepp/sqlite-connection.cpp index 1621217..ea33f05 100644 --- a/libsqlitepp/sqlite-connection.cpp +++ b/libsqlitepp/sqlite-connection.cpp @@ -51,13 +51,13 @@ SQLite::Connection::rollbackTxInt() DB::BulkDeleteStyle SQLite::Connection::bulkDeleteStyle() const { - return DB::BulkDeleteUsingUsingAlias; + return DB::BulkDeleteStyle::UsingUsingAlias; } DB::BulkUpdateStyle SQLite::Connection::bulkUpdateStyle() const { - return DB::BulkUpdateUsingJoin; + return DB::BulkUpdateStyle::UsingJoin; } void |