Namespaces in Anyquery represent an instance of Anyquery. Once initialized, it returns a sql.DB (database/sql) instance that can be used to interact with the database.
The db instance can be used to interact with the database. For example, to execute a query:
DDL statements and INSERT/UPDATE/DELETE statements must be executed using db.Exec. If run using db.Query, it might work; however, it can silently fail and not return any error.