Axon ORM adalah bagian dari Kerangka Kerja Bebas Lemak - ia memiliki mapper on-the-fly. Tidak ada pembuat kode. Tidak ada XML / YAML yang bodoh file konfigurasi . Bunyinya skema database langsung dari backend, jadi di sebagian besar operasi CRUD Anda bahkan tidak perlu memperpanjang model dasar. Ia bekerja dengan semua mesin basis data utama yang didukung PDO : MySQL , SQLite , SQL Server / Sybase, Oracle, PostgreSQL , dll.
/* SQL */
CREATE TABLE products (
product_id INTEGER,
description VARCHAR(128),
PRIMARY KEY (product_id)
);
/* PHP */
// Create
$product=new Axon('products'); // Automatically reads the above schema
$product->product_id=123;
$product->description='Sofa bed';
$product->save(); // ORM knows it's a new record
// Retrieve
$product->load('product_id=123');
echo $product->description;
// Update
$product->description='A better sofa bed';
$product->save(); // ORM knows it's an existing record
// Delete
$product->erase();
Yang terpenting, plug-in dan layer akses data SQL yang menyertainya hanya seringan kerangka: 14 KB (Axon) + 6 KB (SQLdb). Bebas Lemak hanya 55 KB.