2
* Drizzle Client & Protocol Library
4
* Copyright (C) 2008 Eric Day (eday@oddments.org)
7
* Redistribution and use in source and binary forms, with or without
8
* modification, are permitted provided that the following conditions are
11
* * Redistributions of source code must retain the above copyright
12
* notice, this list of conditions and the following disclaimer.
14
* * Redistributions in binary form must reproduce the above
15
* copyright notice, this list of conditions and the following disclaimer
16
* in the documentation and/or other materials provided with the
19
* * The names of its contributors may not be used to endorse or
20
* promote products derived from this software without specific prior
23
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40
* @brief Column Declarations
43
#ifndef __DRIZZLE_COLUMN_H
44
#define __DRIZZLE_COLUMN_H
51
* @addtogroup drizzle_column Column Declarations
52
* @ingroup drizzle_client_interface
53
* @ingroup drizzle_server_interface
55
* These functions are used to get detailed column information. This information
56
* is usually sent as the first part of a result set. There are multiple ways
57
* for column information to be buffered depending on the functions being used.
62
* Initialize a column structure.
65
drizzle_column_st *drizzle_column_create(drizzle_result_st *result,
66
drizzle_column_st *column);
69
* Free a column structure.
72
void drizzle_column_free(drizzle_column_st *column);
75
* Get the drizzle_result_st struct that the column belongs to.
78
drizzle_result_st *drizzle_column_drizzle_result(drizzle_column_st *column);
81
* Get catalog name for a column.
84
const char *drizzle_column_catalog(drizzle_column_st *column);
87
* Get database name for a column.
90
const char *drizzle_column_db(drizzle_column_st *column);
93
* Get table name for a column.
96
const char *drizzle_column_table(drizzle_column_st *column);
99
* Get original table name for a column.
102
const char *drizzle_column_orig_table(drizzle_column_st *column);
105
* Get column name for a column.
108
const char *drizzle_column_name(drizzle_column_st *column);
111
* Get original column name for a column.
114
const char *drizzle_column_orig_name(drizzle_column_st *column);
117
* Get charset for a column.
120
drizzle_charset_t drizzle_column_charset(drizzle_column_st *column);
123
* Get size of a column.
126
uint32_t drizzle_column_size(drizzle_column_st *column);
129
* Get max size of a column.
132
size_t drizzle_column_max_size(drizzle_column_st *column);
135
* Set max size of a column.
138
void drizzle_column_set_max_size(drizzle_column_st *column, size_t size);
141
* Get the type of a column.
144
drizzle_column_type_t drizzle_column_type(drizzle_column_st *column);
147
* Get the Drizzle type of a column.
150
drizzle_column_type_drizzle_t
151
drizzle_column_type_drizzle(drizzle_column_st *column);
154
* Get flags for a column.
157
int drizzle_column_flags(drizzle_column_st *column);
160
* Get the number of decimals for numeric columns.
163
uint8_t drizzle_column_decimals(drizzle_column_st *column);
166
* Get default value for a column.
169
const uint8_t *drizzle_column_default_value(drizzle_column_st *column,
178
#endif /* __DRIZZLE_COLUMN_H */