Download the PHP package madbyad/mpl-mysql without Composer

On this page you can find all versions of the php package madbyad/mpl-mysql. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package mpl-mysql

MPL MySQL

The MPL (MadByAd PHP Library) MySQL is a PHP library used to provide an easy interface for communicating with a mysql database. This library include a query runner to run your own written query (require an extensive knowledge of MYSQL), a query builder for easily writing querries or CRUD (stands for CREATE, READ, UPDATE, DELETE) which allows you to run the 4 basic query of mysql which is INSERT, SELECT, UPDATE, DELETE (The query builder and CRUD require minimal knowledge of mysql query)

Installation

to install the package go ahead and open composer then write the command

MySQL Class

The MySQL class is a class used for establishing a mysql connection

Constructing The Class

To establish a mysql connection you can create a new MySQL(string $hostname = null, string $username = null, string $password = null, string $database = null, int $port = null) class. It takes 5 parameter, the first is the mysql hostname, the second is the mysql username, the third is the mysql user password, the fourth is the database name to connect to, and the fifth is the port number.

Establish Default Connection

You can also establish a default connection, which mean everytime you use the MySQLQuery, MySQLBuilder, or the MySQLCRUD class. You do not need to establish a new connection, you can just use the default connection. To establish a default connection, you can use the method MySQL::setDefaultConnection(string $hostname = null, string $username = null, string $password = null, string $database = null, int $port = null). It takes 5 parameter, the first is the mysql hostname, the second is the mysql username, the third is the mysql user password, the fourth is the database name to connect to, and the fifth is the port number.

Getting The Connection

If you have an instance of the MySQL class, you can use the method getConnection() To get the mysql connection

Or if you have already establish a default connection, you can use the method MySQL::getDefaultConnection()

Example

MySQLQuery Class

The MySQLQuery class allows you to create a query, binds a value to the query, and execute the query. It is easy and provide a lot of freedom but, to use it require an extensive knowledge about mysql

Constructing The Class

When constructing a new MySQLQuery(string $query, mysqli $connection = null) class. It takes 1 parameter and another 1 optional, the first is the query and the second is the mysql connection, if no connection is supplied then it will use the default connection established by the MySQL class, if there is no default connection, then it will throw a MySQLNoConnectionException

Example 1

Example 2

Binding Values

To bind a values into the query, you can use the bind(...$values) method

Why binding values though, not just insert it in the query. Well it is done like this to prevent any sql injection

Example

Execute The Query

Finally, to execute the query, you can use the execute() method

Example

Getting The Result

If the query is a SELECT query, you may want to get the result. To get the result you can use the result() method. This will return the selected rows in a form of an associative array

Example

MySQLCRUD Class

The MySQLCRUD class allows you to perform the 4 basic sql querries which is CREATE or INSERT, READ or SELECT, UPDATE, and DELETE. The MySQLCRUD class require minimal knowledge of mysql to use and no need to write any sql querries

Creating Data

To CREATE or INSERT data you can use the MySQLCRUD::create(string $table, array $columns, array $values, mysqli|MySQL|null $connection = null) method. it takes up 3 parameter and 1 optional parameter, the first is the table on which the data will be created to, the second is the columns which determine which columns of table should it fill, the third is the values for the columns, and the final one is the connection if null then it will use the default connection

Example

Reading Data

To read data, you can use the MySQLCRUD::read(string $table, array $columns = null, array $condition = null, array $values = null, array $readSettings = null, mysqli|MySQL|null $connection = null) method. It takes up 6 parameters, the first is the table on which data will be readed from, the second is the columns which determine which column should be readed, the third is the condition, the fourth is the values which will be binded to the condition (values for the condition), the fifth is the read settings which is an associative array containing the settings (can be used to determine limit, offset, and ordering), and the final is the connection if null then it will use the default connection. This method will return the readed rows in a form of associative array

Example 1

Example 2

Example 3

Example 4

Example 5

Example 6

Updating Data

To update data you can use the method MySQLCRUD::update(string $table, array $columns, array $columnValues, array $condition = null, array $conditionValues = null, mysqli|MySQL|null $connection = null). Tt takes up 6 parameters, the first is the table to have its data update, the second is the list of column to update, the third is the new values for those columns, the fourth is the condition requirement, the fifth is the values for the condition, the sixth is the mysql connection if null then it will use the default connection.

Example

Deleting Data

To delete data you can use the method MySQLCRUD::delete(string $table, array $condition = null, array $values = null, mysqli|MySQL|null $connection = null). It takes up 4 parameters, the first is the table to have its data deleted, the second is the condition for the data that will be deleted, the third is the values for the condition, the fourth is the mysql connection if null then it will use the default connection

Example 1

Example 2

MySQLBuilder Class

The MySQLBuilder class allows you to build your query instead of writing mysql query. To use it require minimal knowledge of mysql query

Constructing The Class

When constructing a new MySQLBuilder(mysqli $connection = null) class. It takes 1 optional parameter, which is the mysql connection, if no connection is supplied then it will use the default connection established by the MySQL class, if there is no default connection, then it will throw a MySQLNoConnectionException

Inserting Values

To insert a value to a table it is just like the MySQLCRUD class, instead it use the method queryInsert(string $table, array $columns, array $values) and takes 3 parameters, the first is the table, the second is the columns to fill, the third is the values for the columns

Example

Selecting Values

To construct a select query, you can use the method querySelect(string $table, array $columns = []). It takes 2 parameter, the first is the table, the second is the column to select

Example 1

Example 2

execute()

The execute() method will execute the constructed query

Example

join()

The join(string $tableToJoin, array $columns = [], string $columnFromTable = "", string $columnFromJoin = "") method is used for joining a table. It takes 4 parameters, the first is the table to join, the second is the columns from the joined table to be selected, the third is the column from the original table which will be used for comparing with the column on the joined table join, the fourth is the column from the joined table which will be used for comparing with the column on the original table join

Example

condition()

The condition(array|string $conditions, array|string|int|float $values) method is used for adding condition to the query. it takes 2 parameter, the first is the condition or the list of conditions, the second is the value / values for the condition

Example 1

Example 2

Example 3

limit()

the limit(int $amount) method is used for setting the selection limit

Example

offset()

the offset(int $amount) method is used for setting the selection offset

Example 1

Example 2

orderBy()

the orderBy(string $column, bool $ascending = true) method is used for ordering the selection by a certain column. It takes 2 parameters, the first is the column for the selection to be ordered, and the second is whether should the order be ascending if false then it will be descending

Example 1

Example 2

Updating Values

To construct an update query, you can use the method queryUpdate(string $table), it takes only 1 parameter and that is the table

Example

set()

the set(string $column, array|string|int|float $value) method is used for setting a new values for the given column. It takes 2 parameter, the first is the column to be updated, the second is the new value

Example 1

execute()

The execute() method will execute the constructed query

Example

condition()

The condition(array|string $conditions, array|string|int|float $values) method can also be used for adding condition to the query. it takes 2 parameter, the first is the condition or the list of conditions, the second is the value / values for the condition

Example

Deleting Values

To construct a delete query, you can use the method delete(string $table). It takes 1 parameter

Example

execute()

The execute() method will execute the constructed query

Example

condition()

The condition(array|string $conditions, array|string|int|float $values) method can also be used for adding condition to the query. it takes 2 parameter, the first is the condition or the list of conditions, the second is the value / values for the condition

Example


All versions of mpl-mysql with dependencies

PHP Build Version
Package Version
Requires php Version >= 7.0.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package madbyad/mpl-mysql contains the following files

Loading the files please wait ....