You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sqlite3pp_ez.h
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -476,7 +476,7 @@ namespace sqlite3pp
476
476
bool use_basic_types_only = false; // If true, only int, double, std::string, and std::wstring are used
477
477
bool exclude_main_hdr_example = false; // If true, excludes example code added to sql_Master_Header.h
478
478
bool exclude_comment_out_example = false;// If true, does NOT comment out example code
479
-
bool initialize_member_variables = true;// If true, initialize class member varibles in header
479
+
bool initialize_member_variables = true;// If true, initialize class member variables in header
480
480
}; // Create a custom defined TblClassOptions variable, or used one of the SQLiteClassBuilder predefined types, or use the default type which is automatically set by the SQLiteClassBuilder constructor
481
481
482
482
structTblClassOptions
@@ -509,7 +509,7 @@ namespace sqlite3pp
509
509
, const StrOptions &stroptions // StrOptions is used to define the default string type. Can be set to a custom define StrOptions, or to one of the predefined common options (strOpt_std_string, strOpt_std_wstring, strOpt_std_tstring, strOpt_sql_tstring)
510
510
, const std::string &AndWhereClause = ""// Used when creating multiple tables. Can specify which tables/views to include via where clause
511
511
, const MiscOptions &miscoptions = MiscOpt_max // MiscOptions is used to define miscellaneous options. Can be set to a custom define MiscOptions, or to one of the predefined common options (MiscOpt_max, MiscOpt_min, MiscOpt_var)
512
-
, const HeaderOpt &headeropt = HeadersCreatedSqlDir // HeaderOpt is used to define the naming convention to use when creating the header file(s).
512
+
, const HeaderOpt &headeropt = HeadersCreatedSqlDir // HeaderOpt is used to define the naming convention to use when creating the header file(s).
513
513
, const std::string& TableOrView_name = CreateHeaderForAllTables // If equal to "%_CreateHeaderForAllTables_%", a header for each table and view is created. If equal to table or view name, a single header for associated table or view is created. If empty or equal to "#NILL#", the constructor does not create any headers.
, const StrOptions &stroptions // StrOptions is used to define the default string type. Can be set to a custom define StrOptions, or to one of the predefined common options (strOpt_std_string, strOpt_std_wstring, strOpt_std_tstring, strOpt_sql_tstring)
527
+
, const HeaderOpt &headeropt // HeaderOpt is used to define the naming convention to use when creating the header file(s).
528
+
, const MiscOptions &miscoptions = MiscOpt_max // MiscOptions is used to define miscellaneous options. Can be set to a custom define MiscOptions, or to one of the predefined common options (MiscOpt_max, MiscOpt_min, MiscOpt_var)
529
+
, const std::string& TableOrView_name = CreateHeaderForAllTables // If equal to "%_CreateHeaderForAllTables_%", a header for each table and view is created. If equal to table or view name, a single header for associated table or view is created. If empty or equal to "#NILL#", the constructor does not create any headers.
530
+
, const std::string &AndWhereClause = ""// Used when creating multiple tables. Can specify which tables/views to include via where clause
0 commit comments