Changeset 19181
- Timestamp:
- 08/19/18 17:31:25 (6 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fits2sql.cc
r19180 r19181 40 40 po::options_description control("Root to SQL"); 41 41 control.add_options() 42 ("uri,u", var<string>() 43 #if BOOST_VERSION >= 104200 44 ->required() 45 #endif 46 , "Database link as in\n\tuser:password@server[:port]/database[?compress=0|1].") 47 ("file", var<string>("") 48 #if BOOST_VERSION >= 104200 49 ->required() 50 #endif 51 , "The root file to read from") 42 ("uri,u", var<string>()->required(), "Database link as in\n\tuser:password@server[:port]/database[?compress=0|1].") 43 ("file", var<string>()->required(), "The root file to read from") 52 44 ("create", po_switch(), "Create the database if not existing") 53 45 ("drop", po_switch(), "Drop the table (implies create)") -
trunk/FACT++/src/root2sql.cc
r19180 r19181 44 44 po::options_description control("Root to SQL"); 45 45 control.add_options() 46 ("uri,u", var<string>() 47 #if BOOST_VERSION >= 104200 48 ->required() 49 #endif 50 , "Database link as in\n\tuser:password@server[:port]/database[?compress=0|1].") 51 ("file", var<string>("") 52 #if BOOST_VERSION >= 104200 53 ->required() 54 #endif 55 , "The root file to read from") 46 ("uri,u", var<string>()->required(), "Database link as in\n\tuser:password@server[:port]/database[?compress=0|1].") 47 ("file", var<string>()->required(), "The root file to read from") 56 48 ("create", po_switch(), "Create the database if not existing") 57 49 ("drop", po_switch(), "Drop the table (implies create)")
Note:
See TracChangeset
for help on using the changeset viewer.