2017 © Pedro Peláez
 

library sql

image

mocodo/sql

  • Thursday, October 6, 2016
  • by mocodo
  • Repository
  • 1 Watchers
  • 0 Stars
  • 33 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 11 Versions
  • 0 % Grown

The README.md

mocodo/sql

Provides a small extension to the native PDO behavior, allowing simple query build., (*1)

Installation

$ composer require mocodo/sql

Tests

$ composer tests

Usage

As it is simply extending PDO, you can instanciate it like so :, (*2)

<?php

use Mocodo\Driver\MySQLConnection

$pdo = new MySQLConnection('mysql:127.0.0.1;dbname=test', 'root', 'root', [...]);

It also comes with a neat feature for building queries., (*3)

$query = 'SELECT foo, bar FROM my_table WHERE 1';

$stmt = $pdo->find($query, [
    'conditions' => [
        'foo' => 'foobar',
        'bar LIKE' => '%.com',
    ]
]);

// SELECT foo, bar FROM my_table WHERE 1 AND foo = 'foobar' AND bar LIKE '%.com'

License

MIT, (*4)

The Versions

06/10 2016

dev-master

9999999-dev

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-mbstring *
  • ext-pdo *

 

The Development Requires

by Charly Goblet

06/10 2016

0.4.2

0.4.2.0

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-mbstring *
  • ext-pdo *

 

The Development Requires

by Charly Goblet

06/10 2016

0.4.1

0.4.1.0

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-mbstring *
  • ext-pdo *

 

The Development Requires

by Charly Goblet

04/10 2016

0.4.0

0.4.0.0

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-mbstring *
  • ext-pdo *

 

The Development Requires

by Charly Goblet

04/10 2016

0.3.3

0.3.3.0

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-mbstring *
  • ext-pdo *

 

The Development Requires

by Charly Goblet

23/09 2016

0.3.2

0.3.2.0

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-mbstring *
  • ext-pdo *

 

The Development Requires

by Charly Goblet

08/09 2016

0.3.1

0.3.1.0

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-mbstring *
  • ext-pdo *

 

The Development Requires

by Charly Goblet

08/09 2016

0.3

0.3.0.0

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-mbstring *
  • ext-pdo *

 

The Development Requires

by Charly Goblet

07/09 2016

0.2

0.2.0.0

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-mbstring *
  • ext-pdo *

 

The Development Requires

by Charly Goblet

05/09 2016

0.1.1

0.1.1.0

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-mbstring *
  • ext-pdo *

 

The Development Requires

by Charly Goblet

05/09 2016

0.1

0.1.0.0

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-mbstring *
  • ext-pdo *

 

The Development Requires

by Charly Goblet