8000 GitHub - vanutp/relational-db
[go: up one dir, main page]

Skip to content

vanutp/relational-db

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Run tests with cargo test --release

Run cli with cargo run --release

You can change the data directory by setting the STORAGE_DIR environment variable

Example queries:

  • create table meow (id int, name string, height double, is_fox bool)
  • insert into meow values (1, 'vanutp', 182.5, true)
  • select * from meow where name = 'vanutp'
  • select * from meow where height > 100.
  • update meow set height = -1. where name = 'vanutp'
  • delete from meow where is_fox = false
  • drop table meow

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0