Database Queries (db) Querying a database in dryLang is incredibly short. dryLang natively supports SQLite, Postgres, and MySQL. drylangrows = db("sqlite", "data.db", "SELECT * FROM users") The db function returns the result as an array of maps (objects), allowing you to immediately access data cleanly. drylangpt(rows[0]["username"])PreviousRPCNextConnection Pooling