ACC SHELL

Path : /srv/www/vhosts/centrumlb/3rdparty/Nette/Database/Drivers/
File Upload :
Current File : /srv/www/vhosts/centrumlb/3rdparty/Nette/Database/Drivers/Sqlite2Driver.php

<?php

/**
 * This file is part of the Nette Framework (http://nette.org)
 * Copyright (c) 2004 David Grudl (http://davidgrudl.com)
 * @package Nette\Database\Drivers
 */



/**
 * Supplemental SQLite2 database driver.
 *
 * @author     David Grudl
 * @package Nette\Database\Drivers
 */
class NSqlite2Driver extends NSqliteDriver
{

	/**
	 * Encodes string for use in a LIKE statement.
	 */
	public function formatLike($value, $pos)
	{
		throw new NotSupportedException;
	}


	/**
	 * Returns metadata for all foreign keys in a table.
	 */
	public function getForeignKeys($table)
	{
		throw new NotSupportedException; // @see http://www.sqlite.org/foreignkeys.html
	}

}

ACC SHELL 2018