Hallo Thomas, 

ich bin mir ziemlich sicher, dass _und_ gemeint ist. Ältere Bestandteile von 
TYPO3 nutzen mysql, neuere, z. B. extbase, mysqli. Siehe hier: 

function exec_SELECTquery($select_fields, $from_table, $where_clause, $groupBy 
= '', $orderBy = '', $limit = '') {
        $query = $this->SELECTquery($select_fields, $from_table, $where_clause, 
$groupBy, $orderBy, $limit);
        $res = mysql_query($query, $this->link);
        if ($this->debugOutput) {
                $this->debug('exec_SELECTquery');
        }
        if ($this->explainOutput) {
                $this->explain($query, $from_table, $this->sql_num_rows($res));
        }
        return $res;
}

$res = mysql_query($query, $this->link);
=> zu finden in der Datenbankklasse typo3lib_DB

http://api.typo3.org/typo3v4/current/html/class_8t3lib__db_8php_source.html#l00186
=>in Version 4.7.1

--

Und damit haben wir ziemlich sicher dein Problem. 

Gruß
Peter

Am 13.06.2012 um 18:50 schrieb <thomas.bue...@web.de> <thomas.bue...@web.de>:

> Hi Björn,
> 
>> falsch, TYPO3 braucht mysql
> 
> wieso steht dann im 123-Installations-Assistenten:
> 
> Installing TYPO3 4.6
> Connect to your database host
> Driver: MySQL/MySQLi (recommended)
> 
> Hier steht, dass beide Treiber möglich sind mysql und mysqli, oder sehe ich 
> das falsch?
> 
> Tom
> 
> 
> _______________________________________________
> TYPO3-german mailing list
> TYPO3-german@lists.typo3.org
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-german

--
Xing: http://www.xing.com/profile/Peter_Linzenkirchner
Web: http://www.typo3-lisardo.de
Facebook: http://tinyurl.com/lisardo-multimedia

_______________________________________________
TYPO3-german mailing list
TYPO3-german@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-german

Antwort per Email an