* Santino ([EMAIL PROTECTED]) wrote:
> I use :
>
>numRows = mysql_num_rows( Result);
> numFields = mysql_num_fields( Result);
>
>for( j=0; j < numRows; j++) {
> mysql_data_seek( Result, j);
> CurrentRow = mysql_fetch_row( Result);
>
I use :
numRows = mysql_num_rows( Result);
numFields = mysql_num_fields( Result);
for( j=0; j < numRows; j++) {
mysql_data_seek( Result, j);
CurrentRow = mysql_fetch_row( Result);
for( k = 0; k < numFields; k++)
I'm writing an application and have the following SQL Query written in
C/GTK+ code:
select customer_id, phone, last_name, first_name,
company, account_code from customers;
OK, I then issue the following C commands:
results = mysql_store_result(conx);
numRows = mysql_num_rows(results);
g_