|
rdouglass -> RE: update query (5/25/2005 10:59:51)
|
It looks like there may be some problems with this query: sql="UPDATE Spooky_IM SET [username]=username, [sentfrom]='::sentfrom::',[status]='::status::',[message]='::message::'<br>" (in the Grey DRW code that is) Can you try changing the DRW query (using the Custom SQL Step) to this: UPDATE Spooky_IM SET [username]='::username::',[sentfrom]='::sentfrom::',[status]='::status::',[message]='::message::' But what I'm kinda' not getting is are you trying to UPDATE the original message or are you trying to INSERT a new message for the thread? If you're doing an UPDATE, you probably only want to update 1 record don't you? That would require some kind of WHERE clause. If you're trying to create a new response or "thread" item, you're going to want to do an INSERT. Or am I completely lost?
|
|
|
|