2017 © Pedro Peláez
 

library tiny-queries

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

image

tiny-queries/tiny-queries

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  • Tuesday, April 3, 2018
  • by wdiesveld
  • Repository
  • 1 Watchers
  • 2 Stars
  • 3,015 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 61 Versions
  • 1 % Grown

The README.md

TinyQueries, (*1)


This repo is @deprecated - please use https://github.com/querytechnology/tqc-php instead, (*2)


With TinyQueries you can create a REST API in which the endpoints are mapped directly to database queries, without an intermediate object layer. The queries can be created either by plain SQL or by a compiler which compiles object oriented notation into SQL. It's based on two components: * A query compiler - it's like a Less for SQL, so you create SQL queries by compiling them. * A simple and powerful syntax to combine the output of queries into nested structures., (*3)

Why

Although you can create REST API's with ORM frameworks as well, TinyQueries has several advantages: * It's much faster than ORM. * As a developer you are not bothered with setting up a complex object hierarchy. * TinyQueries can be connected to any existing database, which is much harder with ORM. * You still have the advantage of object oriented notation for queries. * You still have all freedom to do any SQL you want - even in object notation - which is impossible with ORM., (*4)

System Requirements

  • PHP 5.3 or higher
  • PHP's PDO database layer should be installed
  • PHP's cURL lib should be enabled
  • A SQL database

Installation

NOTE: This package is especially usefull if you want to integrate TinyQueries with an existing PHP application. However if you want to start from scratch it's recommended to use TinyQueries API version instead which requires less configuration., (*5)

  1. If you use Composer then update your composer.json file as follows:, (*6)

    composer require tiny-queries/tiny-queries:^v3, (*7)

    Alternatively, instead of using Composer you could just download the ZIP-file and put the content in the folder where you put your libs., (*8)

  2. Create a folder queries in your project folder. Within this folder create three subfolders sql, interface and tiny. So you have:, (*9)

    • queries the main query folder
    • queries/interface this folder will be used to store compiled json files
    • queries/sql this folder will be used to store compiled SQL files
    • queries/tiny this folder will be used to store your TinyQueries source files

    Ensure that this folder is not accessible through http (so in case you use Apache add a .htaccess file), (*10)

  3. Use the file config/config.template.xml to set the database credentials and save it as config/config.xml., (*11)

  4. In config.xml you should specify the path to the folder queries/tiny in <compiler input="[path-to-queries-tiny-folder]" />, (*12)

  5. In config.xml you should specify the path to the folder queries in <compiler output="[path-to-queries-folder]" />, (*13)

  6. Create a file _model.json inside the folder queries/tiny which has the following content:, (*14)

    /**
     * Model for my project
     *
     */
    {
    }
    
  7. Create a file _project.json inside the folder queries/tiny which has the following content:, (*15)

    /**
     * Projectfile
     *
     */
    {
        id: "my-project"
    }
    

Your project is now ready to be compiled. You can choose to compile using the online IDE or compile from the commandline. Please check http://docs.tinyqueries.com for more info., (*16)

The Versions

03/04 2018

dev-master

9999999-dev http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • ext-xml *
  • php >=5.3.0

 

orm database sql pdo compiler

03/04 2018

v3.7.2

3.7.2.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • ext-xml *
  • php >=5.3.0

 

orm database sql pdo compiler

31/12 2017

v3.7.1

3.7.1.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • ext-xml *
  • php >=5.3.0

 

orm database sql pdo compiler

30/12 2017

v3.7.0

3.7.0.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • ext-xml *
  • php >=5.3.0

 

orm database sql pdo compiler

19/12 2017

v3.6.3

3.6.3.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

27/10 2017

v3.6.2

3.6.2.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

01/08 2017

v3.6.1

3.6.1.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

21/06 2017

v3.6.0

3.6.0.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

06/05 2017

v3.5.2

3.5.2.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

08/04 2017

v3.5.1

3.5.1.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

09/03 2017

v3.5.0

3.5.0.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

07/03 2017

v3.4.1

3.4.1.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

07/03 2017

v3.4.0

3.4.0.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

18/02 2017

v3.3.1

3.3.1.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

28/12 2016

v3.3.0

3.3.0.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

20/12 2016

v3.2.5

3.2.5.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

20/12 2016

v3.2.4

3.2.4.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

20/12 2016

v3.2.3

3.2.3.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

17/11 2016

v3.2.2

3.2.2.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

12/11 2016

v3.2.1

3.2.1.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

11/11 2016

v3.2.0

3.2.0.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping from SQL to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

28/10 2016

v3.1.5

3.1.5.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

24/08 2016

v3.1.4

3.1.4.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

22/08 2016

v3.1.3

3.1.3.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

22/06 2016

v3.1.2

3.1.2.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

27/05 2016

v3.1.1

3.1.1.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

27/05 2016

v3.1.0

3.1.0.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

08/03 2016

v3.0.7

3.0.7.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

03/03 2016

v3.0.6

3.0.6.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

27/02 2016

v3.0.5

3.0.5.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

03/02 2016

v3.0.4

3.0.4.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

26/01 2016

v3.0.3

3.0.3.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

08/01 2016

v3.0.2

3.0.2.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

06/01 2016

v3.0.1

3.0.1.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

02/01 2016

v3.0

3.0.0.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

31/12 2015

v3.0b

3.0.0.0-beta http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

10/12 2015

v2.8.9

2.8.9.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

07/12 2015

v2.8.8

2.8.8.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

03/09 2015

v2.8.7

2.8.7.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

01/09 2015

v2.8.6

2.8.6.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

22/08 2015

v2.8.5

2.8.5.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

17/08 2015

v2.8.4

2.8.4.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-mbstring *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

05/08 2015

v2.8.3

2.8.3.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

29/07 2015

v2.8.2

2.8.2.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

27/07 2015

v2.8.1

2.8.1.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

21/07 2015

v2.8

2.8.0.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

22/06 2015

v2.7.2

2.7.2.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

17/06 2015

v2.7.1

2.7.1.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

11/06 2015

v2.7

2.7.0.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

05/06 2015

v2.6.1

2.6.1.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

04/06 2015

v2.6

2.6.0.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

02/06 2015

v2.6a

2.6.0.0-alpha http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

02/06 2015

v2.5.6

2.5.6.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

30/05 2015

v2.5.5

2.5.5.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

22/05 2015

v2.5.4

2.5.4.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

12/05 2015

v2.5.3

2.5.3.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

09/05 2015

v2.5.2

2.5.2.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-curl *
  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

01/05 2015

v2.5.1

2.5.1.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

19/04 2015

v2.5

2.5.0.0 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

19/04 2015

v2.5-RC2

2.5.0.0-RC2 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler

10/04 2015

v2.5-RC1

2.5.0.0-RC1 http://www.tinyqueries.com/

Highly efficient database layer as alternative for ORM - direct mapping to REST interface

  Sources   Download

Apache-2.0 GPL-2.0+

The Requires

  • ext-pdo *
  • php >=5.3.0

 

orm database sql pdo compiler