~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle-2.0/libdrizzle/libdrizzle.hpp

  • Committer: Olaf van der Spek
  • Date: 2011-08-11 13:51:18 UTC
  • mto: This revision was merged to the branch mainline in revision 2397.
  • Revision ID: olafvdspek@gmail.com-20110811135118-3hk7d3s9ywjz3ibd
Fix PBMS

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 
36
36
#include <cstring>
37
37
#include <libdrizzle/libdrizzle.h>
 
38
#include <sstream>
38
39
#include <stdexcept>
39
40
 
40
41
namespace drizzle {
243
244
    return *this;
244
245
  }
245
246
 
246
 
  query_c& p(long long)
 
247
  query_c& p(long long v)
247
248
  {
 
249
    std::stringstream ss;
 
250
    ss << v;
 
251
    p_raw(ss.str());
248
252
    return *this;
249
253
  }
250
254