Download the PHP package aldisaglobal/mysql-db without Composer

On this page you can find all versions of the php package aldisaglobal/mysql-db. 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 mysql-db

Library Package

Vendor: aldisaglobal
Package: mysql-db
Author: Abid
Version: 0.2

Connection Parameters

Make available the following Connection parameters:

Option 1: As Environment Variables

Place connection params in $_ENV superglobal Optional: You can use the \vlucas\dotenv package with a .env file to populate $_ENV variables

Option 2: As Constants

You can define these constants in a settings file

Option 3: As an Array

You can create and pass a parameters array to the create method $params = array('MYSQL_HOST'=>"hostname", ...)

Instantiate a Database Object

Use the static create method to get the DB object:

Execute queries on the Database Object

$db->query("...mysql statement...");

Iterate SELECT Queries

The full Object API

\AldisaGlobal\MySQL\DB::create([$params]) - returns object with connection

$db->init() - closes any open result

$db->escape($str) - returns escaped string

$db->getResponse()- returns last server response

$db->getError() - returns error string from last query

$db->getErrno()- returns errno from last query

$db->hasError() - true if last query had an error

$db->query($sql [, $buffered=true])- executes query, pass false as second arg for unbuffered query

$db->hasResult() - whether query returned a result

$db->getInsertID()- returns InsertID of last insert query

$db->getRow()- returns the current row

$db->getNextRow([$mode = "object"])- returns next row of result as object [pass "array" to get back an assoc array]

$db->getFirstRow([$mode = "object"]) - returns first row of result as object

$db->getRowNum($num [, $mode = "object"]) - returns row at \$num index

$db->getNumFields()- returns number of columns in result row

$db->getFields() - returns array of column names

$db->getNumRows() - returns total number of rows in result [not accurate for unbuffered queries]


All versions of mysql-db with dependencies

PHP Build Version
Package Version
Requires php Version ^7.0
ext-mysqli Version *
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 aldisaglobal/mysql-db contains the following files

Loading the files please wait ....