Steldb adalah library php yang bertujuan mempermudah pelaksanaan eksekusi query database, mungkin anda sudah pakai PHP ORM semacam Doctrine, Propel, atau RedbeanPHP. Namun Steldb digunakan hanya untuk project kecil saja, dan mempermudah tugas kuliah.
Requirement
Installation
Getting Started
Example
Bug/Error/Suggestion
Wiki
Contributing
- Sudah terinstall Composer
- Saya menggunakan PHP versi 7, jadi untuk PHP untuk versi sebelumnya, belum dicoba.
Install Steldb menggunakan Composer.
composer require lintangtimur/steldb
Buat file .env
atau rename file .env-example
, dan sesuaikan dengan database yang akan dipakai
dalam php kalian inputkan
use Dotenv\Dotenv;
use Steldb\DB;
require "vendor/autoload.php";
$dotenv = new Dotenv(__DIR__);
$dotenv->load();
$db = new DB;
- select seluruh table
$db->selectAll('siswa');
- insert
$db->insert('table', []);
- atau dapat menggunakan perintah sql mentahan
$db->RAW("",[]);
lebih lanjut silahkan membuka index.html
di folder documentation
Jika menemukan bug, error, maupun sugesti bisa menambahkan issue baru Create Issue
Library ini bebas digunakan, dan opensource, kontribusi juga welcome. Mohon bantuannya jika ada yang salah kalian dapat membantu saya dalam mengembangkan ini
- Fork repository ini
- Clone to your local
- Push and make pull request
MIT License
Copyright (c) 2017 lintangtimur
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.