When working with
sqlite3 databases, it is possible to create and connect to an in-memory database named :memory:. Suppose you wanted to connect to the in-memory sqlite3 database :memory: using the functions from the database/sql package. Your task is to write the required additional code to connect to :memory: using the sql.Open() function.