~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/libdrizzle/field.rst

  • Committer: Daniel Nichter
  • Date: 2011-10-23 16:01:37 UTC
  • mto: This revision was merged to the branch mainline in revision 2448.
  • Revision ID: daniel@percona.com-20111023160137-7ac3blgz8z4tf8za
Add Administration Getting Started and Logging.  Capitalize SQL clause keywords.

Show diffs side-by-side

added added

removed removed

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