~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/command.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-08-07 18:24:33 UTC
  • mto: (1115.3.4 captain)
  • mto: This revision was merged to the branch mainline in revision 1117.
  • Revision ID: osullivan.padraig@gmail.com-20090807182433-izx39nicngj6l23p
Renamed the command namespace where I was declaring all of these commands to
be the statement namespace. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
namespace drizzled
36
36
{
37
 
namespace command
 
37
namespace statement
38
38
{
39
39
 
40
40
/**
41
41
 * @class SqlCommand
42
 
 * @brief Represents a command to be executed
 
42
 * @brief Represents a statement to be executed
43
43
 */
44
44
class SqlCommand
45
45
{
52
52
  virtual ~SqlCommand() {}
53
53
 
54
54
  /**
55
 
   * Execute the command.
 
55
   * Execute the statement.
56
56
   *
57
57
   * @return true on failure; false on success
58
58
   */
66
66
  Session *session;
67
67
};
68
68
 
69
 
} /* end namespace command */
 
69
} /* end namespace statement */
70
70
 
71
71
} /* end namespace drizzled */
72
72