you dont want to store the path in the database, only the image file name.
This is because the path will change depending on the location of the page you are trying to display the image on.
you should add the path as part of the src attribute in he image tag:
<img src="path/<?php echo $row_RecordsetName['ImageColumn']; ?>" />