arlet-db
Version:
A simple database manager for Node.js
16 lines (11 loc) • 370 B
Markdown
[🏠 Inicio](../README.md)
## tableExists
### Description:
The tableExists method checks if a specified table exists in the database.
### Usage:
````javascript
const db = new ArletDb('path/to/database', 'myDatabase');
db.tableExists('users')
.then(exists => console.log('Table exists:', exists))
.catch(err => console.error('Error:', err));
````