~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql/result_set.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-23 09:26:52 UTC
  • mto: (2247.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2248.
  • Revision ID: olafvdspek@gmail.com-20110323092652-d3e8lutxy8vu2frb
Remove std::nothrow from new()

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
    return new ResultSet(field_count);
88
88
  }
89
89
 
90
 
  // Special case for us (throw is just too damn slow for internal usage, or
91
 
  // almost any).
92
 
  bool isNoThrow() const
93
 
  {
94
 
    return true;
95
 
  }
96
 
 
97
90
  bool next() const;
98
91
 
99
92
  const std::string getString(size_t column_number) const ;
104
97
  bool error() const;
105
98
  sql::Exception getException() const;
106
99
 
107
 
#if 0
108
 
protected:
109
 
  friend class Client;
110
 
#endif
111
100
  ResultSet(size_t fields) :
112
101
    _has_next_been_called(false),
113
102
    _current_row(_results.end()),