Skip to content

Basic CRUD in Go Lang (Create , Update, Delete) and search functionality

Notifications You must be signed in to change notification settings

Anihouvi/go_crud

Repository files navigation

go_crud

Basic CRUD in Go Lang (Create , Update, Delete) and search functionality

Set up your environment

Make sure that you have your Go environment ready and use the Go command to download all the packages in the .mod file

Use go get command to install packages

go get <package_name>

go run main.go

Customer Table

Use the following script to creat the table

CREATE TABLE customers (
    id SERIAL PRIMARY KEY,
    name VARCHAR(255),
    email VARCHAR(255),
    phone VARCHAR(20),
    address TEXT
);

Schema

id email name phone address
integer string string string string

Acknowledgements

🚀 About Me

I'm a passionate about solving problems and writing interesting codes.Introvert and a Jesus believer. Follow me for more interesting projects.

About

Basic CRUD in Go Lang (Create , Update, Delete) and search functionality

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published