~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_send.h

few updates and modifications to admin commands

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
24
24
#include <drizzled/plugin/client.h>
25
25
#include <drizzled/plugin/query_cache.h>
26
26
#include <drizzled/plugin/transactional_storage_engine.h>
27
 
#include <drizzled/select_result.h>
28
27
 
29
28
namespace drizzled
30
29
{
61
60
  bool send_fields(List<Item> &list)
62
61
  {
63
62
    bool res;
64
 
    if (! (res= session->getClient()->sendFields(&list)))
 
63
    if (! (res= session->client->sendFields(&list)))
65
64
      is_result_set_started= 1;
66
65
    return res;
67
66
  }
100
99
    */
101
100
    plugin::TransactionalStorageEngine::releaseTemporaryLatches(session);
102
101
 
103
 
    List<Item>::iterator li(items.begin());
 
102
    List_iterator_fast<Item> li(items);
104
103
    char buff[MAX_FIELD_WIDTH];
105
104
    String buffer(buff, sizeof(buff), &my_charset_bin);
106
105
 
107
106
    Item *item;
108
107
    while ((item=li++))
109
108
    {
110
 
      if (item->send(session->getClient(), &buffer))
 
109
      if (item->send(session->client, &buffer))
111
110
      {
112
111
        my_message(ER_OUT_OF_RESOURCES, ER(ER_OUT_OF_RESOURCES), MYF(0));
113
112
        break;
120
119
    session->sent_row_count++;
121
120
    if (session->is_error())
122
121
      return true;
123
 
    return session->getClient()->flush();
 
122
    return session->client->flush();
124
123
  }
125
124
};
126
125