package
0.0.0-20220910142224-c294b087b96d
Repository: https://github.com/astaxie/build-web-application-with-golang.git
Documentation: pkg.go.dev

# README

Set up for ch.5.5

  • Step 1) Download and install sqlite 3.

  • Step 2) Run sqlite3 foo.db to create a databased called foo.

  • Step 3) Create the tables found in schema.sql in sqlite.

    Read and run sql statements

      sqlite> .read schema.sql
    

    Show tables

      sqlite> .tables
      userinfo
      userdetail
    
  • Step 4) Exit sqlite.

      sqlite> .exit
    
  • Step 5) Run go get to download and install remote packages.

  • Step 6) Run the program with go run main.go

# Constants

No description provided by the author

# Structs

No description provided by the author