~drizzle-trunk/libdrizzle/jenkins-Libdrizzle-69

« back to all changes in this revision

Viewing changes to docs/api/query.rst

  • Committer: Continuous Integration
  • Date: 2013-01-10 22:17:55 UTC
  • mfrom: (85.1.1 5.1-query)
  • Revision ID: ci@drizzle.org-20130110221755-9uxwfxrz1afhu3aq
Merge lp:~linuxjedi/libdrizzle/5.1-query Build: jenkins-Libdrizzle-39

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
   :param con: A connection object
29
29
   :param query: The query to execute
30
 
   :param size: The length of the query string
31
 
   :param ret_ptr: A pointer to a :c:type:`drizzle_return_t` to store the return status into
32
 
   :returns: A newly allocated result object
33
 
 
34
 
.. c:function:: drizzle_result_st* drizzle_query_str(drizzle_st *con, const char *query, drizzle_return_t *ret_ptr)
35
 
 
36
 
   Executes a query using :c:func:`strlen` to calculate the length of the query
37
 
   string and returns a newly allocated result struct
38
 
 
39
 
   :param con: A connection object
40
 
   :param query: The query to execute
 
30
   :param size: The length of the query string, if set to 0 then :c:func:`strlen` is used to calculate the length
41
31
   :param ret_ptr: A pointer to a :c:type:`drizzle_return_t` to store the return status into
42
32
   :returns: A newly allocated result object
43
33