An open API service indexing awesome lists of open source software.

https://github.com/ging-dev/turso-hrana-dbal


https://github.com/ging-dev/turso-hrana-dbal

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

```php
$authToken,
'host' => $yourAppUrl,
'driverClass' => Driver::class,
];
$conn = DriverManager::getConnection($connectionParams);

$result = $conn->executeQuery('SELECT * FROM users');

print_r($result->fetchAllNumeric());
```