~linuxjedi/libdrizzle/5.1-malloc-replace

« back to all changes in this revision

Viewing changes to docs/api/query.rst

  • Committer: Continuous Integration
  • Date: 2013-01-05 11:52:21 UTC
  • mfrom: (79.1.5 5.1-api-fixes)
  • Revision ID: ci@drizzle.org-20130105115221-qxd0g29jljekx7q9
Merge lp:~linuxjedi/libdrizzle/5.1-api-fixes Build: jenkins-Libdrizzle-33

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
   :param from_size: the length of the source string
52
52
   :returns: the length of the 'to' string or -1 upon error due to empty parameters or overflow
53
53
 
54
 
.. c:function:: bool drizzle_hex_string(char *to, const uint8_t *from, const size_t from_size)
 
54
.. c:function:: bool drizzle_hex_string(char *to, const unsigned char *from, const size_t from_size)
55
55
 
56
56
   Convert data into a hexadecimal string of the data.
57
57
 
269
269
   :param column: A column object
270
270
   :returns: The number of decimal places
271
271
 
272
 
.. c:function:: const uint8_t* drizzle_column_default_value(drizzle_column_st *column, size_t *size)
 
272
.. c:function:: const unsigned char* drizzle_column_default_value(drizzle_column_st *column, size_t *size)
273
273
 
274
274
   Gets the default value for a given column
275
275