Download the PHP package plasma/schemas without Composer
On this page you can find all versions of the php package plasma/schemas. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download plasma/schemas
More information about plasma/schemas
Files in plasma/schemas
Package schemas
Short Description Schemas map any data source into a PHP object.
License Apache-2.0
Informations about the package schemas
Schemas 
Schemas is a simple Object Relational Mapper (ORM) for Plasma. Schemas maps any data source into a PHP object.
Getting Started
Schemas can be installed through composer.
You first need to create a Plasma client and then create a Repository
(which acts like a client) with the created client.
Then you need to create your schema classes and the directory for these schema classes. You will need to register these directories to the Repository.
Directories build schemas from query results and interface with the repository for queries.
After that, each call onto the Repository query
or execute
methods will give you a dedicated SchemaCollection
with the Schema
instances.
A call to Repository::prepare
will give you, if successful, a wrapped Statement
instance. The wrapper has the same purpose as the Repository
.
Preloads
Schemas has a mechanism called Preloads.
Preloads are a way to load foreign references at the same time as a schema gets loaded, and let your schema be always filled with the foreign reference schema. How the preloads are exactly loaded depends on the Directory implementation.
Preloads are foreign targets with fetch mode ALWAYS
and are automatically handled.
Foreign target with fetch mode LAZY
are not automatically loaded and need to be explicitely asked for by calling resolveForeignTargets
on the schema.
Whether one uses one over the other fetch mode depends on the use case. It makes sense to only preload schemas you actually really always need.
Preloads are supported through the ColumnDefinitionInterface
. Current implementations are the ColumnDefinition
implementation and the ColumnDefinitionBuilder
.
Documentation
All versions of schemas with dependencies
plasma/core Version ^0.4.0|^0.3.0|^0.2.0|dev-master
plasma/sql-common Version ^0.2.0|^0.1.0|dev-master