File: control

package info (click to toggle)
golang-github-kisielk-sqlstruct 0.0~git20150917.0.0b86a3e-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 64 kB
  • ctags: 29
  • sloc: makefile: 2
file content (23 lines) | stat: -rw-r--r-- 1,154 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
Source: golang-github-kisielk-sqlstruct
Section: devel
Priority: extra
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Tianon Gravi <tianon@debian.org>
Build-Depends: debhelper (>= 9), dh-golang, golang-go
Standards-Version: 3.9.6
Homepage: https://github.com/kisielk/sqlstruct
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-kisielk-sqlstruct.git
Vcs-Git: git://anonscm.debian.org/pkg-go/packages/golang-github-kisielk-sqlstruct.git
XS-Go-Import-Path: github.com/kisielk/sqlstruct

Package: golang-github-kisielk-sqlstruct-dev
Architecture: all
Depends: golang-go, ${misc:Depends}, ${shlibs:Depends}
Description: convenience functions for using structs with the database/sql package
 Package sqlstruct provides some convenience functions for using structs with
 the Go standard library's database/sql package.
 .
 The package matches struct field names to SQL query column names. A field can
 also specify a matching column with "sql" tag, if it's different from field
 name.  Unexported fields or fields marked with `sql:"-"` are ignored, just like
 with "encoding/json" package.