# Functions
NewDriver creates a driver object.
# Structs
Conn implements sql/driver Conn interface
All Conn implementations should implement the following interaces: Pinger, SessionResetter, and Validator.
Driver is the driver entrypoint
Drivers should implement Connector and DriverContext interaces.
Result is the type returned by sql/driver after an Exec statement.
Rows implements the sql/driver Rows interface.
Stmt implements the Statement interface of sql/driver.