PHPackages                             apsxj/mysql - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. apsxj/mysql

ActiveLibrary[Database &amp; ORM](/categories/database)

apsxj/mysql
===========

MySQL Library for APSXJ Server

v0.1.0(5y ago)09MITPHP

Since May 10Pushed 5y ago3 watchersCompare

[ Source](https://github.com/apsxj/mysql)[ Packagist](https://packagist.org/packages/apsxj/mysql)[ RSS](/packages/apsxj-mysql/feed)WikiDiscussions main Synced yesterday

READMEChangelog (1)DependenciesVersions (3)Used By (0)

mysql
=====

[](#mysql)

*MySQL Library for APSXJ Server*

### Getting Started

[](#getting-started)

1. Add the following to your `composer.json` file:

```
  "require": {
    "apsxj/mysql": "dev-main"
  },
  "repositories": [
    {
      "type": "git",
      "url": "https://github.com/apsxj/mysql.git"
    }
  ]
```

2. Run `composer install`
3. Before calling any of the methods, require the vendor autoloader

```
// For example, from the root directory...
require_once(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
```

4. Extend the `Connection` class

```
