summaryrefslogtreecommitdiff
path: root/1Tdata/xbase/xbase64-4.1.4/src/sql/xbdelete.cpp
blob: 9bd427931011e67cad602530d08d577f5f365f9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/* xbdelete.cpp

XBase64 Software Library

Copyright (c) 1997,2003,2014,2022 Gary A Kunkel

The xb64 software library is covered under the terms of the GPL Version 3, 2007 license.

Email Contact:

    XDB-devel@lists.sourceforge.net
    XDB-users@lists.sourceforge.net

*/

#include "xbase.h"

#ifdef XB_SQL_SUPPORT

namespace xb{


/***********************************************************************/
xbInt16 xbSql::SqlDelete( const xbString &sCmdLine ){

  // expected format:
  //  DELETE FROM tablename.DBF [WHERE expression]


  xbInt16  iRc = 0;
  xbInt16  iRc2 = 0;
  xbInt16  iErrorStop = 0;
  xbString sTableName = "";
  xbUInt32 ulPos = 0;
  xbString sCmd = sCmdLine;
  xbString sNode = "";
  xbString sFilter;
  xbInt16  iDelOpt = 0;

  xbString sTable;
  xbDbf * dbf = NULL;

  try{

//    std::cout << "xbSql::SqlDelete( " << sCmdLine.Str() << " )\n";

    sNode.ExtractElement( sCmd, ' ', 1, 0 );
    sNode.Trim();
    sNode.ToUpperCase();
    if( sNode == "UNDELETE" )
      iDelOpt = 1;

    // pull off the action
    sNode.ExtractElement( sCmd, ' ', 2, 0 );
    sNode.Trim();
    sNode.ToUpperCase();
    if( sNode != "FROM" ){
      iErrorStop = 100;
      iRc = XB_SYNTAX_ERROR;
      throw iRc;
    }

    // pull off the table name
    sTable.ExtractElement( sCmd, ' ', 3, 0 );
    sTable.Trim();

    // pull off the "WHERE" statement if it exists
    sNode.ExtractElement( sCmd, ' ', 4, 0 );
    sNode.Trim();
    sNode.ToUpperCase();
    if( sNode == "WHERE" ){
      ulPos = sCmd.Pos( "WHERE" );
      sFilter = sCmd;
      sFilter.Ltrunc( ulPos + 5 );
    }

    //  if not open, attempt to open it
    dbf = xbase->GetDbfPtr( sTable );
    if( !dbf ){
      if(( iRc = xbase->OpenHighestVersion( sTable, "", &dbf )) != XB_NO_ERROR ){
        iErrorStop = 110;
        throw iRc;
      }
    }
    if( !dbf ){
      iErrorStop = 120;
      iRc = XB_DBF_FILE_NOT_OPEN;
      throw iRc;
    }

    if( sFilter == "" ){
      if(( iRc = dbf->DeleteAll( iDelOpt )) != XB_NO_ERROR ){
        iErrorStop = 130;
        throw iRc;
      }
    } else {

      xbFilter f( dbf );
      if(( iRc = f.Set( sFilter )) != XB_NO_ERROR ){
        iErrorStop = 150;
        throw iRc;
      }

      iRc2 = f.GetFirstRecord( XB_ALL_RECS );
      while( iRc2 == XB_NO_ERROR ){
        if( iDelOpt == 0 ){
          if( !dbf->RecordDeleted()){
            if(( iRc = dbf->DeleteRecord()) != XB_NO_ERROR ){
              iErrorStop = 160;
              throw iRc;
            }
            if(( iRc = dbf->Commit()) != XB_NO_ERROR ){
              iErrorStop = 170;
              throw iRc;
            }
          }

        } else { // undelete
          if( dbf->RecordDeleted()){
            if(( iRc = dbf->UndeleteRecord()) != XB_NO_ERROR ){
              iErrorStop = 180;
              throw iRc;
            }
            if(( iRc = dbf->Commit()) != XB_NO_ERROR ){
              iErrorStop = 190;
              throw iRc;
            }
          }
        }
        iRc2 = f.GetNextRecord();
      }
    }
  }

  catch (xbInt16 iRc ){
    xbString sMsg;
    sMsg.Sprintf( "xbSql::SqlDelete() Exception Caught. Error Stop = [%d] rc = [%d] table = [%s]", iErrorStop, iRc, sTableName.Str() );
    xbase->WriteLogMessage( sMsg.Str() );
    xbase->WriteLogMessage( GetErrorMessage( iRc ));
  }

  return iRc;
}

/***********************************************************************/
}              /* namespace       */
#endif         /*  XB_SQL_SUPPORT */