~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_data.h

merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
 
65
65
    DrizzleDumpIndex(std::string &index, DrizzleDumpConnection* connection) :
66
66
      dcon(connection),
67
 
      indexName(index)
 
67
      indexName(index),
 
68
      isPrimary(false),
 
69
      isUnique(false),
 
70
      isHash(false)
68
71
    { }
69
72
 
70
73
    virtual ~DrizzleDumpIndex() { }
83
86
  public:
84
87
    DrizzleDumpField(std::string &field, DrizzleDumpConnection* connection) :
85
88
      dcon(connection),
86
 
      fieldName(field)
 
89
      fieldName(field),
 
90
      isNull(false),
 
91
      isUnsigned(false),
 
92
      isAutoIncrement(false),
 
93
      defaultIsNull(false),
 
94
      convertDateTime(false)
87
95
    { }
88
96
 
89
97
    virtual ~DrizzleDumpField() { }
120
128
  public:
121
129
    DrizzleDumpTable(std::string &table, DrizzleDumpConnection* connection) :
122
130
      dcon(connection),
123
 
      tableName(table)
 
131
      tableName(table),
 
132
      database(NULL)
124
133
    { }
125
134
 
126
135
    virtual ~DrizzleDumpTable() { }
183
192
    drizzle_result_st *result;
184
193
    DrizzleDumpData(DrizzleDumpTable *dataTable, DrizzleDumpConnection *connection) :
185
194
      dcon(connection),
186
 
      table(dataTable)
 
195
      table(dataTable),
 
196
      result(NULL)
187
197
    { }
188
198
 
189
199
    virtual ~DrizzleDumpData() { }
229
239
 
230
240
    void freeResult(drizzle_result_st* result);
231
241
    bool setDB(std::string databaseName);
232
 
    bool usingDrizzleProtocol(void) { return drizzleProtocol; }
233
 
    bool getServerType(void) { return serverType; }
 
242
    bool usingDrizzleProtocol(void) const { return drizzleProtocol; }
 
243
    bool getServerType(void) const { return serverType; }
234
244
    const char* getServerVersion(void) { return drizzle_con_server_version(&connection); }
235
245
};
236
246