Changeset 19148
- Timestamp:
- 08/10/18 22:56:57 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fits2sql.cc
r19147 r19148 492 492 query += " `"+name; 493 493 if (N>1) 494 query += "["+to_string( (long long int)i)+"]";494 query += "["+to_string(i)+"]"; 495 495 query += "` "+sqltype; 496 496 if (col.type=='A') 497 query += '('+to_string( (long long int)col.num)+')';497 query += '('+to_string(col.num)+')'; 498 498 query += " NOT NULL COMMENT '"+ic->first; 499 499 if (!col.unit.empty()) … … 642 642 query += " `"+c->column+"`"; 643 643 else 644 query += " `"+c->column+"["+to_string( (long long int)i)+"]`";644 query += " `"+c->column+"["+to_string(i)+"]`"; 645 645 646 646 if (N>1 && i!=N-1)
Note:
See TracChangeset
for help on using the changeset viewer.