/**
  * Store a path in the database against a storage location for a file version and a thumbnail handle
  *
  * @param $path
  * @param $file_id
  * @param $version_id
  * @param $storage_location_id
  * @param $thumbnail_handle
  */
 protected function storePath($path, $file_id, $version_id, $storage_location_id, $thumbnail_handle)
 {
     $this->connection->insert('FileImageThumbnailPaths', array('path' => $path, 'fileID' => $file_id, 'fileVersionID' => $version_id, 'storageLocationID' => $storage_location_id, 'thumbnailTypeHandle' => $thumbnail_handle));
 }