- Timestamp:
- 07/24/18 20:20:29 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/root2sql.cc
r19083 r19084 162 162 "are marked as (-ignored-).\n" 163 163 "\n" 164 "If a query failed, the query is printed to stderr together with the error message. " 165 "For the main INSERT query, this is only true if the verbosity level is at least 2 " 166 "or the query has less than 80*25 bytes.\n" 167 "\n" 164 168 "In case of succes, 0 is returned, a value>0 otherwise.\n" 165 169 "\n" … … 582 586 catch (const exception &e) 583 587 { 584 cerr << query << "\n\n"; 588 if (verbose>1 || query.length()<80*25) 589 cerr << query << "\n\n"; 585 590 cerr << "SQL query failed (" << query.length() << " bytes):\n" << e.what() << endl; 586 591 return 6;
Note:
See TracChangeset
for help on using the changeset viewer.