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.cpp
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -242,7 +242,7 @@ namespace sqlite3pp
242
242
{
243
243
constchar* DefaultType = "StrType";
244
244
if (!str) return DefaultType;
245
-
// There's no pratical method for handling blob or clob other than the Blob and Clob type, so don't even include them in an option to declare them any other way.
245
+
// There's no practical method for handling blob or clob other than the Blob and Clob type, so don't even include them in an option to declare them any other way.
Copy file name to clipboardExpand all lines: sqlite3pp_ez.h
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -232,7 +232,7 @@ namespace sqlite3pp
232
232
);
233
233
public:
234
234
// This constructor is best to use when creating a header for all tables
235
-
SQLiteClassBuilder(const std::string& Db_filename
235
+
SQLiteClassBuilder(const std::string& Db_filename// Only Required Field
236
236
, const StrOptions &stroptions = strOpt_std_string // 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)
237
237
, 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)
238
238
, const HeaderOpt &headeropt = HeaderDefaultOpt // HeaderOpt is used to define the naming convention to use when creating the header file(s).
// This constructor is best when crating a single header or no headers at all in the contructor. (When no headers are created by the constructor, the headers are created by explicitly calling member functions CreateHeader or CreateAllHeaders)
252
-
SQLiteClassBuilder(const std::string& Db_filename // Only Required Field
252
+
SQLiteClassBuilder(const std::string& Db_filename
253
253
, const std::string &PostFixWhereClause // Used when creating multiple tables. Can specify which tables/views to include.
254
-
, const std::string& TableOrView_name = ""// 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.
254
+
, const std::string& TableOrView_name// 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.
255
255
, const StrOptions &stroptions = strOpt_std_string // 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)
256
256
, 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)
257
257
, const HeaderOpt &headeropt = HeaderDefaultOpt // HeaderOpt is used to define the naming convention to use when creating the header file(s).
0 commit comments