Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

listTables in SQLite connection returns empty array #6557

Open
giacomomasseron opened this issue Oct 19, 2024 · 0 comments
Open

listTables in SQLite connection returns empty array #6557

giacomomasseron opened this issue Oct 19, 2024 · 0 comments

Comments

@giacomomasseron
Copy link

Q A
Version 4.1.1

Support Question

I have a simple database I'm testing, like 10 tables.

I use this code to connect:

$connectionParams = [
	'dbname' => 'my_db',
	'user' => '',
	'password' => '',
	'host' => '127.0.0.1',
	'driver' => 'pdo_sqlite',
];

$conn = DriverManager::getConnection($connectionParams);
$platform = $conn->getDatabasePlatform();
$platform->registerDoctrineTypeMapping('enum', 'string');
$this->sm = $conn->createSchemaManager();

The connection here is correctly set.

$tables = $this->sm->listTables();

$tables is an empty array.

P.S. If I use mysql driver everything works.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant