~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/execute.cc

  • Committer: Stewart Smith
  • Date: 2010-11-03 03:27:09 UTC
  • mto: (1902.1.1 build) (1910.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: stewart@flamingspork.com-20101103032709-oyvfrc6eb8fzj0mr
fix docs warning: docs/unlock.rst:2: (WARNING/2) Title underline too short.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2010 Brian Aker
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 */
 
20
 
 
21
#include "config.h"
 
22
 
 
23
#include "drizzled/statement/execute.h"
 
24
#include "drizzled/session.h"
 
25
#include "drizzled/user_var_entry.h"
 
26
 
 
27
namespace drizzled
 
28
{
 
29
 
 
30
void mysql_parse(drizzled::Session *session, const char *inBuf, uint32_t length);
 
31
 
 
32
namespace statement
 
33
{
 
34
 
 
35
Execute::Execute(Session *in_session) :
 
36
  Statement(in_session),
 
37
  is_var(false)
 
38
{
 
39
}
 
40
  
 
41
 
 
42
bool statement::Execute::parseVariable()
 
43
{
 
44
  if (is_var)
 
45
  {
 
46
    user_var_entry *var= getSession()->getVariable(to_execute, false);
 
47
 
 
48
    if (var && var->length && var->value && var->type == STRING_RESULT)
 
49
    {
 
50
      LEX_STRING tmp_for_var;
 
51
      tmp_for_var.str= var->value; 
 
52
      tmp_for_var.length= var->length; 
 
53
      to_execute= tmp_for_var;
 
54
      return true;
 
55
    }
 
56
  }
 
57
 
 
58
  return false;
 
59
}
 
60
 
 
61
bool statement::Execute::execute()
 
62
{
 
63
  if (to_execute.length == 0)
 
64
  {
 
65
    my_error(ER_WRONG_ARGUMENTS, MYF(0), "Invalid Variable");
 
66
    return false;
 
67
  }
 
68
  if (is_var)
 
69
  {
 
70
    if (not parseVariable())
 
71
    {
 
72
      my_error(ER_WRONG_ARGUMENTS, MYF(0), "Invalid Variable");
 
73
      return false;
 
74
    }
 
75
  }
 
76
 
 
77
  mysql_parse(getSession(), to_execute.str, to_execute.length);
 
78
 
 
79
  // We have to restore ourselves at the top for delete[] to work.
 
80
  getSession()->getLex()->statement= this;
 
81
 
 
82
  return true;
 
83
}
 
84
 
 
85
} /* namespace statement */
 
86
} /* namespace drizzled */
 
87