Axon ORM, Yağsız Çerçevenin bir parçasıdır - anında bir eşleştiriciye sahiptir. Kod oluşturucu yok. Aptal XML / YAML yapılandırma dosyası yok. Veritabanı şemasını doğrudan arka uçtan okur, bu nedenle çoğu CRUD işleminde bir temel modeli genişletmeniz bile gerekmez. Tüm büyük PDO destekli veritabanı motorlarıyla çalışır: MySQL , SQLite , SQL Server / Sybase, Oracle, PostgreSQL , vb.
/* 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();
En önemlisi, eklenti ve beraberindeki SQL veri erişim katmanı, çerçeve kadar hafiftir: 14 KB (Axon) + 6 KB (SQLdb). Yağsız sadece 55 KB'dir.