MySQL 9.0.0
Source Code Documentation
client_query_attributes.h
Go to the documentation of this file.
1/*
2 Copyright (c) 2020, 2024, Oracle and/or its affiliates.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License, version 2.0,
6 as published by the Free Software Foundation.
7
8 This program is designed to work with certain software (including
9 but not limited to OpenSSL) that is licensed under separate terms,
10 as designated in a particular file or component or in included license
11 documentation. The authors of MySQL hereby grant you an additional
12 permission to link the program and your derivative works with the
13 separately licensed software that they have either included with
14 the program or referenced in the documentation.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License, version 2.0, for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24*/
25
26#ifndef CLIENT_QUERY_ATTRIBUTES_H
27#define CLIENT_QUERY_ATTRIBUTES_H
28
29#include "mysql.h"
30
32 public:
35 /* Assumes that name and value are 0 terminated. */
36 bool push_param(const char *name, const char *value);
37 /* Does not assumes that name and value are 0 terminated. */
38 bool push_param(const char *name, size_t name_length, const char *value,
39 size_t value_length);
41 int set_params_stmt(MYSQL_STMT *stmt);
42
43 void clear(MYSQL *mysql = nullptr);
44
45 private:
46 /* 32 should be enough for everybody */
47 static constexpr int max_count = 32;
48 const char *names[max_count];
50 unsigned count{0};
51};
52
54
55#endif
Definition: client_query_attributes.h:31
unsigned count
Definition: client_query_attributes.h:50
MYSQL_BIND values[max_count]
Definition: client_query_attributes.h:49
static constexpr int max_count
Definition: client_query_attributes.h:47
int set_params_stmt(MYSQL_STMT *stmt)
Definition: client_query_attributes.cc:77
client_query_attributes()=default
bool push_param(const char *name, const char *value)
Definition: client_query_attributes.cc:34
void clear(MYSQL *mysql=nullptr)
Definition: client_query_attributes.cc:84
int set_params(MYSQL *mysql)
Definition: client_query_attributes.cc:70
const char * names[max_count]
Definition: client_query_attributes.h:48
~client_query_attributes()
Definition: client_query_attributes.h:34
client_query_attributes * global_attrs
Definition: client_query_attributes.cc:32
This file defines the client API to MySQL and also the ABI of the dynamically linked libmysqlclient.
Definition: instrumented_condition_variable.h:32
case opt name
Definition: sslopt-case.h:29
Definition: mysql.h:665
Definition: mysql.h:692
Definition: mysql.h:300