Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/angadthandi/ood-rdbms


https://github.com/angadthandi/ood-rdbms

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

        

# RDBMS (OOD)

## Entities:

- Database Manager
- Database
- Table
- Row

## Classes:

### DatabaseManager
- Databases Database[]

### Database
- Tables Table[]

### Table
- RowMap Row[] # map of rowID to row

### Row
- ID INT
- ColumnValueMap STRING[] # map of string to string
- CreatedDate DATETIME
- ModifiedDate DATETIME

--------------------------------------

From src/public folder start php local server -
./../php/php.exe -S localhost:8080 -c ../php/php.ini

--------------------------------------

### Test RDBMS Flow: