ประกอบไปด้วย Function ที่สำคัญดังนี้
- ConnectMySQL ฟังก์ชั่นเชื่อมต่อฐานข้อมูล MySQL
- ExecuteDML ฟังก์ชั่นที่ใช้ร่วมกับ Insert และ Update และมี rollback ที่รองรับกับ Storage Engine "InnoDB"
- PrepareDML ฟังก์ชั่นที่ใช้ร่วมกับ Select, Insert, Update สร้าง Attibute สำหรับรับค่าข้อมูล Ex. insert into user (username,password,status) values (:un,:pw,:stas)
- StoreProcedure ฟังก์ชั่นเหมาะกับการทำงานร่วมกับ Stored Procedure in MySQL
- QueryFetchAllNum, QueryFetchAllNumByPrepare, QueryFetchAllAssoc, QueryFetchAllAssocByPrepare นำไปใช้ร่วมกับ Select เพื่อดึงค่าทั้งหมด
- QueryFetchNum, QueryFetchNumByPrepare, QueryFetchAssoc, QueryFetchAssocByPrepare นำไปใช้ร่วมกับ Select เพื่อดึงค่าแค่ 1 ตัว
- Pagination ฟังก์ชั่นสำหรับการเลื่อนหน้าข้อมูล Ex. << | 1 | 2 | 3 | >>
- PaginationSmall ฟังก์ชั่นสำหรับการเลื่อนหน้าข้อมูล Ex. | 1 | 2 | 3 |