You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

github.com/ck3g/somedaysofgo/testing-course-sql-client

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/ck3g/somedaysofgo/testing-course-sql-client

v0.0.0-20230907142256-da9fd5e30d4a
Source
Go
Version published
Created
Source

Golang testing

Hands-on project from Udemy course Unit, integration and functional Testing in Golang.

Database

mysql> CREATE DATABASE go_sql_client_example;
mysql> USE go_sql_client_example;
mysql> CREATE TABLE users (id BIGINT NOT NULL AUTO_INCREMENT, first_name VARCHAR(20), last_name VARCHAR(20), email VARCHAR(50), date_created DATETIME, PRIMARY KEY(id));
mysql> INSERT INTO users (first_name, last_name, email, date_created) VALUES ('John', 'Doe', 'john.doe@example.com', NOW());
mysql> SELECT * FROM users;

FAQs

Package last updated on 07 Sep 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts