All Projects → mrcrypster → mysqly

mrcrypster / mysqly

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

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to mysqly

pdo-dbal
A simple database abstraction layer using PHP and PDO
Stars: ✭ 14 (-22.22%)
Mutual labels:  pdo, pdo-mysql, php-database
Olric
Distributed cache and in-memory key/value data store. It can be used both as an embedded Go library and as a language-independent service.
Stars: ✭ 2,067 (+11383.33%)
Mutual labels:  key-value, cache-storage
pdo-mysql-login-register
Simple PHP Login & Register using PDO MySQL
Stars: ✭ 37 (+105.56%)
Mutual labels:  pdo, pdo-mysql
Php frameworks analysis
php框架源码分析
Stars: ✭ 57 (+216.67%)
Mutual labels:  pdo
Swpdo
Swoole Coroutine SQL component like PDO | 0成本迁移PDO到Swoole高性能协程客户端
Stars: ✭ 64 (+255.56%)
Mutual labels:  pdo
Pdo
Connecting to MySQL in PHP using PDO.
Stars: ✭ 187 (+938.89%)
Mutual labels:  pdo
arena
An interactive UI dashboard for Bee, Bull and BullMQ packages
Stars: ✭ 755 (+4094.44%)
Mutual labels:  job-queue
Dtool
数据生成器,数据库工具,数据库填充,伪数据,faker,mysql数据字典,数据库比对
Stars: ✭ 28 (+55.56%)
Mutual labels:  pdo
Database
💾 A database layer with a familiar PDO-like API but much more powerful. Building queries, advanced joins, drivers for MySQL, PostgreSQL, SQLite, MS SQL Server and Oracle.
Stars: ✭ 251 (+1294.44%)
Mutual labels:  pdo
Phive Queue
$queue->push('I can be popped off after', '10 minutes');
Stars: ✭ 161 (+794.44%)
Mutual labels:  pdo
Uxdm
🔀 UXDM helps developers migrate data from one system or format to another.
Stars: ✭ 159 (+783.33%)
Mutual labels:  pdo
Nukeviet
NukeViet CMS is multi Content Management System. NukeViet CMS is the 1st open source content management system in Vietnam. NukeViet was awarded the Vietnam Talent 2011, the Ministry of Education and Training Vietnam officially encouraged to use.
Stars: ✭ 113 (+527.78%)
Mutual labels:  pdo
Zend Diagnostics
Universal set of diagnostic tests for PHP applications.
Stars: ✭ 192 (+966.67%)
Mutual labels:  pdo
Flexicms
Flexible site management system Flexi CMS
Stars: ✭ 61 (+238.89%)
Mutual labels:  pdo
mysql-sp-audit
Using trigger based stored procedure to create audit table. It follows the wordpress meta data approach to store the changes, so all the data is store in just two centalized tables.
Stars: ✭ 27 (+50%)
Mutual labels:  stored-procedures
Mysqldump Php
PHP version of mysqldump cli that comes with MySQL
Stars: ✭ 975 (+5316.67%)
Mutual labels:  pdo
Php Pdo Mysql Class
A PHP MySQL PDO class similar to the the Python MySQLdb, which supports iterator and parameter binding when using "WHERE IN" statement.
Stars: ✭ 213 (+1083.33%)
Mutual labels:  pdo
Zebra session
A drop-in replacement for PHP's default session handler which stores session data in a MySQL database, providing both better performance and better security and protection against session fixation and session hijacking
Stars: ✭ 133 (+638.89%)
Mutual labels:  pdo
Basicdb
PDO ile geliştirilmiş kullanımı kolay veritabanı sınıfıdır.
Stars: ✭ 127 (+605.56%)
Mutual labels:  pdo
Company Website Pro
现代公司企业官网以及电子商务产品网站
Stars: ✭ 172 (+855.56%)
Mutual labels:  pdo

Mysqly is a full-featured opensource small-overhead PHP data framework for Mysql built for fast and efficient development.

Install

wget https://mysqly.com/mysqly.php

Usage example

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].