arlet-db
Version:
A simple database manager for Node.js
16 lines (11 loc) • 348 B
Markdown
[🏠 Inicio](../README.md)
## getTables
### Description:
The getTables method retrieves the names of all tables in the database.
### Usage:
```javascript
const db = new ArletDb('path/to/database', 'myDatabase');
db.getTables()
.then(tables => console.log('Tables:', tables))
.catch(err => console.error('Error:', err));
```