Accessing the database using JDatabase/de: Difference between revisions

From Joomla! Documentation

No edit summary
FuzzyBot (talk | contribs)
Updating to match new version of source page
Line 22: Line 22:
! scope="col" | Joomla DB
! scope="col" | Joomla DB
|-
|-
| MySQL || {{JVer|1.5}}{{JVer|2.5}}{{JVer|3.0}} || Ja
| MySQL || {{JVer|1.5}}{{JVer|2.5}}{{JVer|3.0}}{{JVer|4.0}} || Ja
|-
|-
| Microsoft SQL Server || {{JVer|2.5}}{{JVer|3.0}} || Ja
| Microsoft SQL Server || {{JVer|2.5}}{{JVer|3.0}} || Ja
Line 28: Line 28:
| Microsoft SQL Azure || {{JVer|2.5}}{{JVer|3.0}} || Ja
| Microsoft SQL Azure || {{JVer|2.5}}{{JVer|3.0}} || Ja
|-
|-
| Postgresql || {{JVer|3.0}} || Ja
| Postgresql || {{JVer|3.0}}{{JVer|4.0}} || <div class="mw-translate-fuzzy">
Ja
</div>
|-
|-
| Oracle DB || {{JVer|3.0}} || Nein
| Oracle DB || {{JVer|3.0}} || Nein
|-
|-
| SQL Lite || {{JVer|3.0}} || Nein
| SQL Lite || {{JVer|3.0}}{{JVer|4.0}} || Nein
|-
|-
| PHP Data Objects (PDO)* || {{JVer|3.0}} || Nein
| PHP Data Objects (PDO)* || {{JVer|3.0}}{{JVer|4.0}} || Nein
|}
|}


* PHP Data Objects ist ein Datenbank-Abstraktionsschicht und ist in PHP 5.1+ enthalten.
* PHP Data Objects ist ein Datenbank-Abstraktionsschicht und ist in PHP 5.1+ enthalten.


<noinclude>[[Category:Database/de|Datenbank]]</noinclude>
<noinclude>
[[Category:Database{{#translation:}}]]
</noinclude>

Revision as of 18:56, 5 April 2020

Joomla! 
3.x
Joomla! 
2.5

Nützliche Informationen

Die Verwendung der JDatabase-Klasse ist für die Entwicklung für Joomla sehr wichtig. Das Tutorial ist in zwei separate Teile aufgeteilt:

Erweiterte Informationen

Dieses Tutorial befasst sich mit der Verwendung von Transaktionen mit JDatabase (verfügbar seit Joomla 3.x):

Dieses Tutorial befasst sich mit Verwendung von union-Methoden in JDatabaseQuery (verfügbar seit Joomla 3.3):

Unterstützte Datenbanktypen

Die Tabelle unten beschreibt die verfügbaren Datenbanktypen für Joomla! sowie die jeweilige Joomla!-Version von Joomla, ab der sie verfügbar wurden.

Um einen Datenbanktyp während der Installation von Joomla! oder in der globalen Konfiguration verfügbar zu machen, muss die entsprechende PHP-Bibliothek installiert sein (z. B. für PHP5 und MySQL muss die Bibliothek php5-mysql installiert werden).

Datenbank Joomla! Versionen Joomla DB
MySQL Joomla 1.5Joomla 2.5Joomla 3.0Joomla 4.0 Ja
Microsoft SQL Server Joomla 2.5Joomla 3.0 Ja
Microsoft SQL Azure Joomla 2.5Joomla 3.0 Ja
Postgresql Joomla 3.0Joomla 4.0

Ja

Oracle DB Joomla 3.0 Nein
SQL Lite Joomla 3.0Joomla 4.0 Nein
PHP Data Objects (PDO)* Joomla 3.0Joomla 4.0 Nein
  • PHP Data Objects ist ein Datenbank-Abstraktionsschicht und ist in PHP 5.1+ enthalten.