1836.3.1
by Monty Taylor
Removed libdrizzle doxygen. Put in function stubs in sphinx. Someone can |
1 |
.. highlightlang:: c |
2 |
||
3 |
Field Object
|
|
4 |
------------
|
|
5 |
||
6 |
.. index:: object: drizzle_field_st |
|
7 |
||
8 |
Client Functions
|
|
9 |
^^^^^^^^^^^^^^^^
|
|
10 |
||
11 |
These functions allow you to access fields in a result set if the result is |
|
12 |
unbuffered. If the result is buffered, you can access the fields through the |
|
13 |
row functions. |
|
14 |
||
15 |
||
16 |
.. c:function:: drizzle_field_t drizzle_field_read (drizzle_result_st *result, size_t *offset, size_t *size, size_t *total, drizzle_return_t *ret_ptr) |
|
17 |
||
18 |
.. c:function:: drizzle_field_t drizzle_field_buffer (drizzle_result_st *result, size_t *total, drizzle_return_t *ret_ptr) |
|
19 |
||
20 |
.. c:function:: void drizzle_field_free (drizzle_field_t field) |
|
21 |
||
22 |
Server Functions
|
|
23 |
^^^^^^^^^^^^^^^^
|
|
24 |
||
25 |
These functions allow you to send a field over a connection. |
|
26 |
||
27 |
||
28 |
.. c:function:: drizzle_return_t drizzle_field_write (drizzle_result_st *result, const drizzle_field_t field, size_t size, size_t total) |
|
29 |
||
30 |
||
31 |