Changeset 19135
- Timestamp:
- 08/03/18 16:14:12 (6 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fits2sql.cc
r19126 r19135 4 4 #include "Database.h" 5 5 6 #include "tools.h" 6 7 #include "Time.h" 7 8 #include "Configuration.h" … … 63 64 ("engine", var<string>(""), "Database engine to be used when a new table is created") 64 65 ("row-format", var<string>(""), "Defines the ROW_FORMAT keyword for table creation") 65 ("duplicate", vars<string>( ""),"Specifies an assignment_list for an 'ON DUPLICATE KEY UPDATE' expression")66 ("duplicate", vars<string>(), "Specifies an assignment_list for an 'ON DUPLICATE KEY UPDATE' expression") 66 67 ("ignore-errors", po_switch(), "Adds the IGNORE keyword to the INSERT query (turns errors into warnings, ignores rows with errors)") 67 68 ; … … 312 313 const vector<string> primary = conf.Vec<string>("primary"); 313 314 314 const v actor<string> duplicate = conf.Vec<string>("duplicate");315 const vector<string> duplicate = conf.Vec<string>("duplicate"); 315 316 const vector<string> notsigned = conf.Vec<string>("unsigned"); 316 317 -
trunk/FACT++/src/root2sql.cc
r19126 r19135 4 4 #include "Database.h" 5 5 6 #include "tools.h" 6 7 #include "Time.h" 7 8 #include "Configuration.h" … … 66 67 ("engine", var<string>(""), "Database engine to be used when a new table is created") 67 68 ("row-format", var<string>(""), "Defines the ROW_FORMAT keyword for table creation") 68 ("duplicate", vars<string>( ""),"Specifies an assignment_list for an 'ON DUPLICATE KEY UPDATE' expression")69 ("duplicate", vars<string>(), "Specifies an assignment_list for an 'ON DUPLICATE KEY UPDATE' expression") 69 70 ("ignore-errors", po_switch(), "Adds the IGNORE keyword to the INSERT query (turns errors into warnings, ignores rows with errors)") 70 71 ;
Note:
See TracChangeset
for help on using the changeset viewer.