Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mrcrypster/mysqly

Full-featured opensource small-overhead PHP data framework for Mysql built for fast and efficient development
https://github.com/mrcrypster/mysqly

cache cache-storage database job-queue key-value mysql mysql-cache opensource pdo pdo-mysql php php-database php-key-value-store sql stored-procedures

Last synced: 23 days ago
JSON representation

Full-featured opensource small-overhead PHP data framework for Mysql built for fast and efficient development

Awesome Lists containing this project

README

        

[Mysqly](https://mysqly.com/) is a full-featured opensource small-overhead PHP data framework for Mysql built for fast and efficient development.



- [Official website](https://mysqly.com/)
- [Advanced Mysql knowledge base](https://mysqly.com/educate)

# Install
```bash
wget https://mysqly.com/mysqly.php
```

# Usage example
```php
require 'mysqly.php'; # include library (single file)
mysqly::auth('user', 'pwd', 'db', '127.0.0.1'); # connect to Mysql server

// Dynamic methods for table names
$users = mysqly::users(['age' => 25]); # SELECT * FROM users WHERE age = 25
$user = mysqly::users_(6); # SELECT * FROM users WHERE id = 6 LIMIT 1

// And many more features ↓
```

# All features & documentation

[![Download mysqly](https://img.shields.io/sourceforge/dt/mysqly.svg)](https://sourceforge.net/projects/mysqly/files/latest/download)