Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tomheaton/govault

GoVault is a simple database project written in Go that supports SQL-like commands.
https://github.com/tomheaton/govault

database go golang sql

Last synced: about 12 hours ago
JSON representation

GoVault is a simple database project written in Go that supports SQL-like commands.

Awesome Lists containing this project

README

        

# GoVault

GoVault is a simple database project written in Go that supports SQL-like
commands.

## examples

## Creating Databases

```shell
> CREATE DATABASE mydb;
```

### Creating Tables

```shell
> CREATE TABLE Dogs (Name STRING, Age INT);
```

### Inserting Data

```shell
> INSERT INTO Dogs (Name, Age) VALUES ('Rex', 4);
```