├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── EasyDB.php ├── EasyPlaceholder.php ├── EasyStatement.php ├── Exception ├── ConstructorFailed.php ├── EasyDBException.php ├── ExceptionInterface.php ├── InvalidIdentifier.php ├── InvalidTableName.php ├── MustBeArrayOrEasyStatement.php ├── MustBeEmpty.php ├── MustBeNonEmpty.php ├── MustBeOneDimensionalArray.php └── QueryError.php └── Factory.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/composer.json -------------------------------------------------------------------------------- /src/EasyDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/EasyDB.php -------------------------------------------------------------------------------- /src/EasyPlaceholder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/EasyPlaceholder.php -------------------------------------------------------------------------------- /src/EasyStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/EasyStatement.php -------------------------------------------------------------------------------- /src/Exception/ConstructorFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/Exception/ConstructorFailed.php -------------------------------------------------------------------------------- /src/Exception/EasyDBException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/Exception/EasyDBException.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/Exception/InvalidIdentifier.php -------------------------------------------------------------------------------- /src/Exception/InvalidTableName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/Exception/InvalidTableName.php -------------------------------------------------------------------------------- /src/Exception/MustBeArrayOrEasyStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/Exception/MustBeArrayOrEasyStatement.php -------------------------------------------------------------------------------- /src/Exception/MustBeEmpty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/Exception/MustBeEmpty.php -------------------------------------------------------------------------------- /src/Exception/MustBeNonEmpty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/Exception/MustBeNonEmpty.php -------------------------------------------------------------------------------- /src/Exception/MustBeOneDimensionalArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/Exception/MustBeOneDimensionalArray.php -------------------------------------------------------------------------------- /src/Exception/QueryError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/Exception/QueryError.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paragonie/easydb/HEAD/src/Factory.php --------------------------------------------------------------------------------