Developer-Guide/datastorage/database/queries.md
2016-08-09 18:15:20 +02:00

39 lines
540 B
Markdown

# Queries
## Database
The database query builder provides a uniform way to write default database queries for the following databases:
* MySQL
* PostgreSQL
* SQLite
* MicrosoftSQL
* OracleSQL
### Query Builder
The query builder is used for regular CRUD opperations on the database.
#### Prefix
#### Select, Insert, Update, Delete
##### Random
#### From
#### Into
#### Where
#### Limit
#### Offset
#### Order
#### Join
### Schema Builder
The schema builder is used for schema related operations such as `DROP`, `CREATE` etc.