1 مستودع
Capabilities for scanning database rows into generic maps when the schema is unknown.
Distinct from Row Mapping Logic: Existing candidates focus on JSON mapping or static schema mapping, not unknown schema map scanning.
Explore 1 awesome GitHub repository matching data & databases · Generic Row Scanning. Refine with filters or upvote what's useful.
sqlx is a set of extensions for the Go database/sql package that reduces boilerplate code by automating the mapping of database query results directly into structs and slices. It provides a wrapper around standard database types to eliminate manual row scanning and repetitive error handling. The project distinguishes itself through named parameter binding and query placeholder rebinding, which translate generic markers into driver-specific symbols. It also enables dynamic SQL execution by allowing the application to read and execute SQL statements directly from the filesystem. The library co
Returns row data as a generic map of column names to values when the database schema is unknown.