Subversion-Projekte lars-tiefland.ci

Revision

Revision 2049 | Revision 2242 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 2049 Revision 2107
Zeile 292... Zeile 292...
292
 
292
 
293
	/**
293
	/**
294
	 * Error
294
	 * Error
295
	 *
295
	 *
296
	 * Returns an array containing code and message of the last
296
	 * Returns an array containing code and message of the last
297
	 * database error that has occured.
297
	 * database error that has occurred.
298
	 *
298
	 *
299
	 * @return	array
299
	 * @return	array
300
	 */
300
	 */
301
	public function error()
301
	public function error()
Zeile 393... Zeile 393...
393
	 * @param	array	$values	INSERT values
393
	 * @param	array	$values	INSERT values
394
	 * @return	string|bool
394
	 * @return	string|bool
395
	 */
395
	 */
396
	protected function _insert_batch($table, $keys, $values)
396
	protected function _insert_batch($table, $keys, $values)
397
	{
397
	{
398
		return ($this->db->db_debug) ? $this->db->display_error('db_unsupported_feature') : FALSE;
398
		return ($this->db_debug) ? $this->display_error('db_unsupported_feature') : FALSE;
399
	}
399
	}
Zeile 400... Zeile 400...
400
 
400
 
Zeile 401... Zeile 401...
401
	// --------------------------------------------------------------------
401
	// --------------------------------------------------------------------