0.0.2 • Published 5 years ago

@ahryman40k/abstract-connection-framework v0.0.2

Weekly downloads
-
License
GPLv3
Repository
-
Last release
5 years ago

@ahryman40k/AbstractConnectionFramework

Description

@ahryman40k/AbstractConnectionFramework is an abstract layer upon any datasource (Oracle, postgres, GraphQl, REST, flat file, etc ...). The goal is to provide the same data access whatever datasources are. This library provide nothing else than abstract objects allowing building concrete data access.

Usage

It allows your code to call @ahryman40k/{AnyConcrete}ConnectionFramework library like below:

import { Concrete } from '@ahryman40k/concreteconnectionframework';

const connection = Concrete.create();
const command = connection.createCommand({ myCommand });

Further improvements

  • Provide transaction capabilities