Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Drupal 6, I try to developed my own Drupal module. I can retrieve a node from the database in my module. Now I want to try to write some values for example number 6 to a CCK field for example field_grade_student. I try to this this the following way, here I try to assign the student the number. Another number can priviously be assigned so I add it.. . But if i look to the database nothing is happen? must I write a database query to solve this issue or what i'm doing wrong? My question is, how can write values to cck field without a sql query?

foreach($currentArray as $value) { // $currentArray is node student.
    $value->field_grade_student[0]['value'] += 6;
}
share|improve this question

1 Answer

I would assume you mean "without using a manual sql query", since to update a node a db query has to be run at some point.

If you already have the node object, you might want to look at node_save(). node_save() will take care of the updating of the node in the database.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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