https://github.com/ging-dev/turso-hrana-dbal
https://github.com/ging-dev/turso-hrana-dbal
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ging-dev/turso-hrana-dbal
- Owner: ging-dev
- Created: 2024-10-21T06:50:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-24T05:15:39.000Z (over 1 year ago)
- Last Synced: 2025-03-24T02:21:49.501Z (10 months ago)
- Language: PHP
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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());
```