Ignore:
Timestamp:
08/11/18 20:31:15 (6 years ago)
Author:
tbretz
Message:
Removed the ISDC hack
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/root2sql.cc

    r19151 r19152  
    545545            query += "   `"+name;
    546546            if (N>1)
    547                 query += "["+to_string((long long int)i)+"]";
     547                query += "["+to_string(i)+"]";
    548548            query += "` "+sqltype+" NOT NULL COMMENT '"+o->GetTitle()+"'";
    549549            if (N>1 && i!=N-1)
     
    750750                query += "   `"+c->column+"`";
    751751            else
    752                 query += "   `"+c->column+"["+to_string((long long int)i)+"]`";
     752                query += "   `"+c->column+"["+to_string(i)+"]`";
    753753
    754754            if (N>1 && i!=N-1)
Note: See TracChangeset for help on using the changeset viewer.