I am getting into this dll now and have the basics sorted out (INSERT, UPDATE, DELETE)

What I need to do moving forward is to run a SELECT query to get a result:

"SELECT FROM `player_index` WHERE `name` = 'player'"

I then need to simply see if this returns a row or does not. Basically it is to see if the player exists in the database prior to creating him/her. If exists then ask for passwd, if doesn't exist then start player creation.

What dll functions can I use to do this that are in this dll? I am looking at mySQL_GetStr but cannot figure it out!

Thanks for any help,

Andy