diff --git a/modules/database/query_builder.h b/modules/database/query_builder.h index 0a4a0876c..f20df998c 100644 --- a/modules/database/query_builder.h +++ b/modules/database/query_builder.h @@ -155,8 +155,6 @@ public: QueryBuilder(); virtual ~QueryBuilder(); - String query_result; - protected: static void _bind_methods(); @@ -237,7 +235,7 @@ protected: Ref _psph_bind(); Ref _psphi_bind(const String &p_id); Ref _psphr_bind(const String &p_raw_id); - + Ref _w_bind(const String &str); Ref _ew_bind(const String &str); @@ -246,6 +244,8 @@ protected: Ref _end_command_bind(); Ref _reset_bind(); + + String query_result; }; #endif