doc.go 570 B

12345678910111213
  1. // Package sqlx provides general purpose extensions to database/sql.
  2. //
  3. // It is intended to seamlessly wrap database/sql and provide convenience
  4. // methods which are useful in the development of database driven applications.
  5. // None of the underlying database/sql methods are changed. Instead all extended
  6. // behavior is implemented through new methods defined on wrapper types.
  7. //
  8. // Additions include scanning into structs, named query support, rebinding
  9. // queries for different drivers, convenient shorthands for common error handling
  10. // and more.
  11. //
  12. package sqlx