October 2021
Beginner
596 pages
9h 56m
English
Java provides multiple levels of SQL-based database access, referred to as JDBC (aka Java Database Connectivity), in the java.sql and java.sqlx packages. Go does much the same thing but with less function with the sql and driver packages. The sql package provides a generic framework of functions like java.sql does for SQL databases, while the driver package is a Systems Programming Interface (SPI) to allow pluggable drivers to be consumed. Most SQL actions are done by the drivers. Unlike with Java, most ...