~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_data.h

  • Committer: Monty Taylor
  • Date: 2010-12-02 22:51:54 UTC
  • mto: (1975.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1976.
  • Revision ID: mordred@inaugust.com-20101202225154-h54ifmga9x6cckgs
Refactored syslog module and changed it to use sys_var directly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
      isUnsigned(false),
92
92
      isAutoIncrement(false),
93
93
      defaultIsNull(false),
94
 
      convertDateTime(false),
95
 
      rangeCheck(false)
 
94
      convertDateTime(false)
96
95
    { }
97
96
 
98
97
    virtual ~DrizzleDumpField() { }
110
109
    bool isAutoIncrement;
111
110
    bool defaultIsNull;
112
111
    bool convertDateTime;
113
 
    bool rangeCheck;
114
112
    std::string defaultValue;
115
113
    std::string collation;
116
 
    std::string comment;
117
114
 
118
115
    /* For enum type */
119
116
    std::string enumValues;
265
262
    void writeString(std::string &str)
266
263
    {
267
264
      if (not connection->queryNoResult(str))
268
 
        throw std::exception();
 
265
        throw 1;
269
266
    }
270
267
 
271
268
    void setConnection(DrizzleDumpConnection *conn) { connection= conn; }