Agent skill · Databases

matlab-map-database-objects

Generates MATLAB Object Relational Mapping (ORM) code using Database Toolbox. Use when mapping MATLAB classes to database tables, reading/writing objects with ormread/ormwrite/ormupdate, defining Mappable classes, converting classes to SQL with orm2sql, or using object-oriented database workflows.

matlabgithub.com/matlabGitHub ↗
claude-codecodexcopilotNOASSERTION
Install
npx skills add matlab/matlab-agentic-toolkit --skill matlab-map-database-objects --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 12 KB
Bundled scripts: none
Version: 1.0
Declared author: MathWorks
Path: skills-catalog/reporting-and-database-access/matlab-map-database-objects/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 868
Language: MATLAB

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# MATLAB Object Relational Mapper Use when mapping MATLAB classes to relational database tables using the Object Relational Mapping (ORM) layer in Database Toolbox. Defines Mappable classes with property-to-column mappings and uses ormread, ormwrite, and ormupdate for CRUD operations on objects. Available since R2023b. ## When to Use This Skill - Mapping MATLAB classes to database tables - Reading database rows as MATLAB objects - Writing MATLAB objects to database tables - Updating database rows from modified objects - Generating SQL CREATE TABLE from a class definition - Object-oriented database workflows - User mentions keywords: ORM, object relational mapping, Mappable, ormread, ormwrite, ormupdate, orm2sql, class mapping, property mapping, object database ## When NOT to Use - Ad-hoc queries or data exploration — use `sqlread`/`fetch` with `RowFilter` instead - Bulk imports/exports of thousands of rows — ORM is slower than `sqlwrite`/`sqlread` for bulk operations - MongoDB, Cassandra, or Neo4j — ORM only works with relational databases (JDBC, ODBC, native MySQL/PostgreSQL/SQLite) - MATLAB releases before R2023b — ORM is not available ## Critical Rules ### ORM Requirements - **A

What's inside
Steps it walks through
  1. When to Use This Skill
  2. When NOT to Use
  3. Critical Rules
  4. ORM Requirements
  5. Supported Connections
  6. Decision Framework
  7. Core Concepts
  8. Defining a Mappable Class
  9. Property Attributes Reference
  10. Common Mistakes
  11. Writing Objects with ormwrite
  12. Reading Objects with ormread
  13. Updating Objects with ormupdate
  14. Deleting Records
Ships with 1 file
  • manifest.yaml
More from matlab-agentic-toolkit
All skills →
About this skill
What does the matlab-map-database-objects skill do?

Generates MATLAB Object Relational Mapping (ORM) code using Database Toolbox. Use when mapping MATLAB classes to database tables, reading/writing objects with ormread/ormwrite/ormupdate, defining Mappable classes, converting classes to SQL with orm2sql, or using object-oriented database workflows.

How do I install it?

Run `npx skills add matlab/matlab-agentic-toolkit --skill matlab-map-database-objects --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From matlab/matlab-agentic-toolkit, a repository with 868 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going