When one uses Prepared Statements in MySQL C API to handle TEXT field result, one has to specify the length of the string for an out binding:

 MYSQL_BIND    out_bind;
 char          str_data[STRING_SIZE]; 
 my_bool       is_null;
 my_bool       error;

 ....
 /* STRING COLUMN */
 out_bind.buffer_type = MYSQL_TYPE_STRING;
 out_bind.buffer = str_data;
 out_bind.buffer_length = STRING_SIZE;
 out_bind.is_null= &is_null;
 out_bind.length= &length;
 out_bind.error= &error;

 mysql_stmt_bind_result(statement, out_bind)

In the given example STRING_SIZE is the known constant, but how to be with TEXT fields where data length can vary from small sizes to megabytes?

Is there standard approaches for this?

link|improve this question

65% accept rate
Ugh! str_data by itself (after decaying) is a char *. Why are you converting to char *? :) – pmg Jul 7 '11 at 18:16
You are right. It is just a rudiment that stayed here after moving from a real code to this simplified example. Never mind. – MajesticRa Jul 7 '11 at 18:26
I dont remember exactly, but you get this in return structures – Ulterior Jul 7 '11 at 18:27
Like out_bind.length in this example? ;) But you have to do the binding prior calling the statement that means that you have to allocate memory prior too. And you have to know the amount of memory to allocate. We have kind of complicated querry and do it twice would be kind of ugly solution... I believe... – MajesticRa Jul 7 '11 at 18:32
How about using mysql builtin functions to return size of a field with OCTET_LENGTH() in the same query, so you can first allocate enough data and then actually read it in one pass --- select count(*) as 'documents', sum(octet_length(document_data)) as total_size, avg(octet_length(document_data)) as avg_size from DOCUMENTS; – Ulterior Jul 7 '11 at 18:42
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

The manual page for mysql_stmt_fetch says:

In some cases you might want to determine the length of a column value before fetching it with mysql_stmt_fetch(). ... To accomplish this, you can use these strategies:

  • Before invoking mysql_stmt_fetch() to retrieve individual rows, pass STMT_ATTR_UPDATE_MAX_LENGTH to mysql_stmt_attr_set(), then invoke mysql_stmt_store_result() to buffer the entire result on the client side. Setting the STMT_ATTR_UPDATE_MAX_LENGTH attribute causes the maximal length of column values to be indicated by the max_length member of the result set metadata returned by mysql_stmt_result_metadata().

  • Invoke mysql_stmt_fetch() with a zero-length buffer for the column in question and a pointer in which the real length can be stored. Then use the real length with mysql_stmt_fetch_column().

You might also like to read the manual page for mysql_stmt_bind_result

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.