If you're planning to use normal graphics techniques to wrap this around a sphere I don't think you strictly want to use Mercator projection as that doesn't work at the poles.
The normal 3D texture mapping for spheres is simply a 2:1 aspect ratio bitmap, where the X axis maps directly to [0, 360) degrees of longitude and the Y axis to [-90, +90] degrees of latitude.
So just take your lat/long values from your database and scale them linearly to pixel coordinates, e.g. (assuming [0, 0] is at top left and [w, h] is the size of the bitmap):
x = (longitude + 180) * w
y = (90 - latitude) * h
EDIT - I misread the question and didn't realise you already have an image. If AIUI that original image is the one that's in Mercator projection, then your problem is simply to undo the non-linear scaling of that image's vertical axis. The horizontal axis can remain unchanged because Mercator uses a linear scale for longitude.