Modules: Ringo SqlStore
-
basedialect
Basic database dialect implementation. This class is extended by the different DB-specific dialect implementations.
-
cache
Generic LRU cache implementation, used for both query and entity caches within a Store instance.
-
collection
Provides constructors for standard and partitioned collections.
-
key
Storable key implementation.
-
main
The main module of SqlStore
-
mapping
Provides a Mapping constructor representing the mapping definition of an entity defined within a store.
-
storable
Base class for mapping JavaScript objects to relational databases.
-
store
Store instances represent the underlying database, providing functionality for defining entities, manipulating and querying data.
-
transaction
Transaction implementation, keeping track of modifications within a transaction and providing functionality for committing or rolling back.
-
types
Module providing constructors for the various RDBMS data types.
-
util
A module providing various RDBMS related utility functions
-
connection/pool
Basic JDBC connection pool implementation.
-
connection/poolworker
Worker implementation responsible for triggering stale connection cleanup in the connection pool.
-
connection/util
Provides various utility functions for instantiating JDBC connection pools
-
databases/h2
Dialect implementation for H2 databases
-
databases/mysql5
Dialect implementation for MySQL databases
-
databases/oracle
Dialect implementation for Oracle databases
-
databases/postgresql
Dialect implementation for PostgreSQL databases
-
query/ast
AST implementation used by the query parser to convert queries into a tree of nodes.
-
query/collectorgenerator
A module for creating select result set collectors
-
query/normalizer
A query normalizer capable of converting a query AST back into a query string
-
query/parser
A PEG query parser converting query strings into their AST representation
-
query/query
Provides query functionality for both SqlStore type of queries and raw SQL ones.
-
query/sqlgenerator
Provides an SqlGenerator constructor capable of converting a query AST into a raw SQL query suitable for the underlying database.