https://github.com/allnulled/lsw-database-virtualizer
Database virtualizer tool for LSW.
https://github.com/allnulled/lsw-database-virtualizer
Last synced: 10 months ago
JSON representation
Database virtualizer tool for LSW.
- Host: GitHub
- URL: https://github.com/allnulled/lsw-database-virtualizer
- Owner: allnulled
- Created: 2025-03-24T17:19:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-24T17:53:22.000Z (about 1 year ago)
- Last Synced: 2025-07-22T15:49:34.970Z (11 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lsw-database-virtualizer
Database virtualizer tool for LSW.
## Installation
```sh
npm install -s @allnulled/lsw-database-virtualizer
```
## Importation
```html
```
## API
The signatures of the classes are:
```js
class LswDatabaseVirtualizer {
static create(...args) {}
static start(...args) {}
$lifecycle = [...];
$defaultConfigurations = {...}
$trace(method, args) {}
configure(options = {}) {}
setPhysicalConnection(physicalConnection) {}
setVirtualConnection(virtualConnection) {}
setSchema(schema) {}
start() {}
async onStart() {}
async onStartValidation() {}
async onValidateConnection() {}
async onValidateSchema() {}
async onFinishValidation() {}
async onDeleteVirtualDatabase() {}
async onStartClonation() {}
async onCloneDatabase() {}
async onFinishClonation() {}
async onStartVirtualization() {}
async onVirtualizeSchema() {}
async onVirtualizeTables() {}
async onVirtualizeColumns() {}
async onFinishVirtualization() {}
async onStartFormalization() {}
async onFormalizeColumns() {}
async onFormalizeTables() {}
async onFormalizeSchema() {}
async onFinishFormalization() {}
async onReport() {}
async onFinish() {}
}
```
# Conclusion
This is a package used to pack some utilities. It is not used in the project right now.