Esempio n. 1
0
	/** same as getRow, except does not use dataset context
	 * transactioning is only for prefixed tables, so no checkremove..
	 */
	public static function getRow_noDC( $table, $where ) {
		$target_table = mysql_real_escape_string( "${table}" );
		$query = "SELECT * FROM $target_table " . $where;
		return CopyTools::doQuery( $query );
	}