Quote:
Originally posted by GREG K
To be specific I only want to retrieve the body of messege id 1047
|
I'm probably missing something, but to get 1 field (column) just do "SELECT columnname" instead of "SELECT *"
And if you only want the record where messageid=1047 then add " WHERE messageid=1047"
i.e.
CharQuery = "SELECT body FROM messages WHERE messageid=1047"
Is that what you meant?