0.0.10 • Published 6 years ago

swc-storage v0.0.10

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

swc-storage

Storage is a wrapper for accessing database using NodeJS. It's written in TypeScript and provides basic functions to fetch data from the database, insert, delete and modify data. Currently only MySQL is supported but more will follow soon.

Adapters

Since every database has to be accessed differntly, Storage has an adapter for each database-type e.g. MySQL-adapter. You can create an instance of an adapter directly or get it using the static function getStorage provided by the Storage module. This function takes a hash and returns an Adapter-object. For more information on adapters and the functions they provide read into the index.adoc inside the docs directory.

Connection

During the lifetime of an adapter it holds the connection to the database open. This can lead to problems if the database server is configured to close unused connection after some time. This problem can easily be solved by not creating an adapter directly but using a connection instead. The connection object is instantiated using a config-hash similar to that that has to be passed to the getStorage-function. The connection ensures that only one adapter is open at a time and that it is closed as soon as it is not used anymore. Read more on connections in connections.adoc inside the docs directory.

0.0.10

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago