yamlbase 0.7.2

A lightweight SQL server that serves YAML-defined tables over standard SQL protocols
Documentation
database:
  name: test_db

tables:
  users:
    columns:
      id: "INTEGER PRIMARY KEY"
      name: "VARCHAR(100)"
      age: "INTEGER"
      salary: "DECIMAL(10,2)"
      created_at: "TIMESTAMP"
    data:
      - id: 1
        name: "Alice"
        age: 30
        salary: 75000.50
        created_at: "2024-01-15 10:30:00"
      - id: 2
        name: "Bob"
        age: "25"  # Test string-to-int coercion
        salary: 65000
        created_at: "2024-02-20 14:00:00"
      - id: 3
        name: "Charlie"
        age: 35
        salary: "85000.75"  # Test string-to-decimal coercion
        created_at: "2024-03-10 09:15:00"