Ivory ORM Docs

Ivory ORM Docs

  • Docs

›SQL Syntax

SQL Syntax

  • First-Steps
  • Select
  • Select Distinct
  • Where
  • And, Or and Not
  • Order By
  • Insert
  • Update
  • Delete
  • Min and Max
  • Count, Avg and Sum
  • Like
  • In
  • Between
  • Alias
  • Joins
  • Union
  • Group By
  • Having
  • Exists
  • Any & All
  • Procedures

Install

Download the project folder on Github

Go to https://github.com/KevinDaSilvaS/IvoryORM and click at clone or download and download the files.

Descompact

Unzip the file and go to the project folder

Configure your database

Open the config file and configure your database.

//mysql is the dafault database engine for ivory but php support many diferents databases like plsql, oracledb, postgres and others
//host normally localhost for the most part of projects
//dbname your database name Ex: myAwesomeProject
//port is optional but woth to add to description 
//myusername is the username it is your database username the default for the mostpart of databases is root
//mypassword is the database password if your database doens`t require a password just use ""

$db = new PDO('mysql:host=localhost;dbname=atelierCostura;port=3306', "myusername", "mypassword");
Select →
  • Download the project folder on Github
  • Descompact
  • Configure your database
Repository Link
Copyright © 2020 Kevin da Silva