/**
  *
  */
 public static function _init()
 {
     if (!MediaContentLocationIndexer::$s_db) {
         MediaContentLocationIndexer::$s_db = new Db();
         MediaContentLocationIndexer::$s_index_insert = MediaContentLocationIndexer::$s_db->prepare("INSERT INTO ca_media_content_locations (table_num, row_id, content, loc) VALUES (?, ?, ?, ?)");
         MediaContentLocationIndexer::$s_index_delete = MediaContentLocationIndexer::$s_db->prepare("DELETE FROM ca_media_content_locations WHERE table_num = ? AND row_id = ?");
         MediaContentLocationIndexer::$s_index_find = MediaContentLocationIndexer::$s_db->prepare("SELECT * FROM ca_media_content_locations WHERE table_num = ? AND row_id = ? AND content like ?");
         MediaContentLocationIndexer::$s_index_check = MediaContentLocationIndexer::$s_db->prepare("SELECT row_id FROM ca_media_content_locations WHERE table_num = ? AND row_id = ? LIMIT 1");
     }
 }