2017 © Pedro Peláez
 

library mysqli

Prepared statements - implements MySQLi client.

image

rocketphp/mysqli

Prepared statements - implements MySQLi client.

  • Friday, September 4, 2015
  • by rocketphp
  • Repository
  • 1 Watchers
  • 0 Stars
  • 18 Installations
  • HTML
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 13 % Grown

The README.md

mysqli

Build Status Coverage Status Dependency Status, (*1)

Latest Stable Version License, (*2)

RocketPHP\MySQLi uses the MySQL Improved Extension to perform queries on a MySQL database via prepared statements., (*3)

To perform a query on a database – start with an instance of MySQLi and use the select, insert, update, update many and delete query methods., (*4)

use RocketPHP\MySQLi\MySQLi;

$mysqli = new MySQLi([
    'hostname' => 'localhost',
    'username' => 'root',
    'password' => '',
    'database' => 'example_db',
    'port'     => null,
]);

$sql = "SELECT * FROM table_name
        WHERE column_name = ?";
$values = array('column_value');
$fmt = array('%s');
$result = $mysqli->select($sql, 
                          $values,
                          $fmt);
  • File issues at https://github.com/rocketphp/mysqli/issues
  • Documentation is at http://rocketphp.io/mysqli

The Versions

04/09 2015

1.0.x-dev

1.0.9999999.9999999-dev https://github.com/rocketphp/mysqli

Prepared statements - implements MySQLi client.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

mysql mysqli rocketphp

04/09 2015

dev-master

9999999-dev https://github.com/rocketphp/mysqli

Prepared statements - implements MySQLi client.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

mysql mysqli rocketphp

04/09 2015

dev-develop

dev-develop https://github.com/rocketphp/mysqli

Prepared statements - implements MySQLi client.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

mysql mysqli rocketphp

01/09 2015

1.0.0

1.0.0.0 https://github.com/rocketphp/mysqli

Prepared statements - implements MySQLi client.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

mysql mysqli rocketphp