Ignore:
Timestamp:
08/11/04 12:01:44 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/msql
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/msql/MSQLServer.cc

    r4514 r4577  
    221221}
    222222
    223 void MSQLServer::PrintLine(const TArrayI &max) const /*FOLD00*/
     223void MSQLServer::PrintLine(const TArrayI &max) /*FOLD00*/
    224224{
    225225    cout << "+" << setfill('-');
     
    229229}
    230230
    231 void MSQLServer::PrintTable(TSQLResult *res) const /*FOLD00*/
    232 {
    233     Int_t n = res->GetFieldCount();
     231void MSQLServer::PrintTable(TSQLResult &res) /*FOLD00*/
     232{
     233    Int_t n = res.GetFieldCount();
    234234
    235235    TArrayI max(n);
    236236
    237237    for (int i=0; i<n; i++)
    238         max[i] = strlen(res->GetFieldName(i));
     238        max[i] = strlen(res.GetFieldName(i));
    239239
    240240    TSQLRow *row;
    241241
    242242    TList rows;
    243     while ((row=res->Next()))
     243    while ((row=res.Next()))
    244244    {
    245245        for (int i=0; i<n; i++)
     
    254254    cout << "|" << setfill(' ');
    255255    for (int i=0; i<n; i++)
    256         cout << setw(max[i]+1) << res->GetFieldName(i) << " |";
     256        cout << setw(max[i]+1) << res.GetFieldName(i) << " |";
    257257    cout << endl;
    258258
     
    305305    if (res)
    306306    {
    307         PrintTable(res);
     307        PrintTable(*res);
    308308        delete res;
    309309    }
  • trunk/MagicSoft/Mars/msql/MSQLServer.h

    r4514 r4577  
    2828    Bool_t PrintError(const char *txt, const char *q) const;
    2929
    30     void PrintLine(const TArrayI &max) const;
    31     void PrintTable(TSQLResult *res) const;
    3230    TString GetFields() const;
    3331
     
    8482    ~MSQLServer();
    8583
     84    static void PrintLine(const TArrayI &max);
     85    static void PrintTable(TSQLResult &res);
     86
    8687    const char *GetName() const;
    8788
Note: See TracChangeset for help on using the changeset viewer.