fuel / core

Fuel PHP Framework - The core of the Fuel v1 framework
http://fuelphp.com
811 stars 344 forks source link

PDO List tables support #2185

Closed phpukr closed 1 year ago

phpukr commented 1 year ago

DB PDO List tables support

sonarcloud[bot] commented 1 year ago

SonarCloud Quality Gate failed.    Quality Gate failed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 4 Code Smells

No Coverage information No Coverage information
15.2% 15.2% Duplication

WanWizard commented 1 year ago

The PDO driver is a generic driver, which is why it doesn't have a LIST TABLES function, since that is RDBMS specific.

The PDO driver shouldn't be used on its own. Either use a RDBMS driver that extends PDO (dblib, mysql, sqlsrv, sqlite), or if you use a RDBMS that currently does not have a specific driver, please create one.