I can't assign the result of query to variable (the program is written in C). Here is what I do

char buffer[100];

while ((row = mysql_fetch_row(res)) != NULL) {
   buffer = row[0];
}

A get this error during compile process

error: incompatible types in assignment

What is wrong here ?

link|improve this question

What is row? Is it a char array? – LaceySnr - Matt Lacey Dec 16 '11 at 10:12
feedback

1 Answer

up vote 3 down vote accepted

Assuming it's a string? C doesn't have strings it has arrays of characters. So you have copy the characters from one array to another.

so use a copy function like

strncpy(buffer, row[0], 100);
link|improve this answer
Also, be sure that a length of 100 is enough. – ckruse Dec 16 '11 at 10:20
Thanks corrected – Preet Sangha Dec 16 '11 at 10:25
1  
A note mainly to the question asker: mysql_fetch_lengths can be used to know how long (in bytes) each field is. – Corbin Dec 16 '11 at 10:35
feedback

Your Answer

 
or
required, but never shown

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