[Typo3-german] Extension soll auf externe DB zugreifen

Ingo Renner typo3 at ingo-renner.com
Wed Oct 19 19:52:28 CEST 2005


Am Wed, 19 Oct 2005 16:47:57 +0200 schrieb Stefan Bothner | [m]zentrale:

> Denkt ihr das ist eine gute Lösung?

nein, schau Dir mal t3lib/class.t3lib_db.php an. Dort gibt es auch eine
Methode um eine neue Connection herzustellen. Ausserdem brauchst Du auch
nicht TYPO3_DB überschreiben/ändern.

sieht dann etwa so aus:

$import = t3lib_div::makeInstance('t3lib_db');
$import->link = $import->sql_pconnect(
	$this->host,
	$this->user,
	$this->pass
);
$import->sql_select_db($this->db);
$postCommCount = $import->exec_SELECTgetRows(
	'entry_type, COUNT(*) AS num',
	$table,
	'deleted = 0',
	'entry_type',
	'entry_type ASC'
);

HTH
Ingo


-- 
Use a newsreader! Check out
http://typo3.org/community/mailing-lists/use-a-news-reader/



More information about the TYPO3-german mailing list