File: control

package info (click to toggle)
golang-github-jmoiron-sqlx 1.1%2Bgit20160206.61.398dd58-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 212 kB
  • ctags: 256
  • sloc: makefile: 3
file content (37 lines) | stat: -rw-r--r-- 1,632 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Source: golang-github-jmoiron-sqlx
Section: devel
Priority: extra
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Tim Potter <tpot@hpe.com>
Build-Depends: debhelper (>= 9),
               dh-golang,
               golang-go,
               golang-github-go-sql-driver-mysql-dev,
               golang-github-lib-pq-dev,
               golang-github-mattn-go-sqlite3-dev
Standards-Version: 3.9.8
Homepage: https://github.com/jmoiron/sqlx
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-jmoiron-sqlx.git
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-jmoiron-sqlx.git
XS-Go-Import-Path: github.com/jmoiron/sqlx

Package: golang-github-jmoiron-sqlx-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends},
         golang-go,
         golang-github-go-sql-driver-mysql-dev,
         golang-github-lib-pq-dev,
         golang-github-mattn-go-sqlite3-dev
Description: General purpose extensions to Golang's database/sql library
 sqlx is a library which provides a set of extensions on Go's standard
 database/sql library. The sqlx versions of sql.DB, sql.TX, sql.Stmt,
 et al. all leave the underlying interfaces untouched, so that their
 interfaces are a superset on the standard ones.  This makes it relatively
 painless to integrate existing codebases using database/sql with sqlx.
 .
 Major additional concepts are:
 .
   * Marshal rows into structs (with embedded struct support), maps, and slices
   * Named parameter support including prepared statements
   * Get and Select to go quickly from query to struct/slice