Changeset 19152


Ignore:
Timestamp:
08/11/18 20:31:15 (6 years ago)
Author:
tbretz
Message:
Removed the ISDC hack
Location:
trunk/FACT++/src
Files:
2 edited

Legend:

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

    r19151 r19152  
    513513            query += "   `"+name;
    514514            if (N>1)
    515                 query += "["+to_string((long long int)i)+"]";
     515                query += "["+to_string(i)+"]";
    516516            query += "` "+sqltype;
    517517            if (col.type=='A')
    518                 query += '('+to_string((long long int)col.num)+')';
     518                query += '('+to_string(col.num)+')';
    519519            query += " NOT NULL COMMENT '"+ic->first;
    520520            if (!col.unit.empty())
     
    549549    Database connection(uri);
    550550
     551    try
     552    {
     553        if (!force)
     554            connection.connected();
     555    }
     556    catch (const exception &e)
     557    {
     558        cerr << "SQL connection failed: " << e.what() << '\n' << endl;
     559        return 4;
     560    }
     561
    551562    if (verbose>0)
    552563    {
     
    571582            return 6;
    572583        }
    573     }
    574 
    575     try
    576     {
    577         if (!force)
    578             connection.connected();
    579     }
    580     catch (const exception &e)
    581     {
    582         cerr << "SQL connection failed: " << e.what() << '\n' << endl;
    583         return 4;
    584584    }
    585585
     
    714714                query += "   `"+c->column+"`";
    715715            else
    716                 query += "   `"+c->column+"["+to_string((long long int)i)+"]`";
     716                query += "   `"+c->column+"["+to_string(i)+"]`";
    717717
    718718            if (N>1 && i!=N-1)
  • 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.