I actually found an sql statement that will change the user password for me...Thank you GOOGLE.
Thank you to those who were sending me the right direction.
UPDATE user SET user_password = MD5(CONCAT(user_id, '-', MD5('somepass'))) WHERE user_name = 'whatever';
Norman K. Boyd