2019-11-18 17:58:33 +13:00
---
2014-09-21 12:07:58 +12:00
title: Model and Databases
summary: Learn how SilverStripe manages database tables, ways to query your database and how to publish data.
2014-10-27 16:40:02 +13:00
introduction: This guide will cover how to create and manipulate data within SilverStripe and how to use the ORM (Object Relational Model) to query data.
2019-11-18 17:58:33 +13:00
icon: database
---
2014-09-21 12:07:58 +12:00
2017-07-03 13:22:12 +12:00
In SilverStripe, application data will be represented by a [DataObject ](api:SilverStripe\ORM\DataObject ) class. A `DataObject` subclass defines the
data columns, relationships and properties of a particular data record. For example, [Member ](api:SilverStripe\Security\Member ) is a `DataObject`
2014-10-27 16:40:02 +13:00
which stores information about a person, CMS user or mail subscriber.
2014-09-21 12:07:58 +12:00
2014-10-27 16:40:02 +13:00
[CHILDREN Exclude="How_tos"]
2014-09-21 12:07:58 +12:00
2014-10-27 16:40:02 +13:00
## How to's
[CHILDREN Folder="How_Tos"]