| 12
 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
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 
 | Source: cppdb
Priority: optional
Maintainer: Tobias Frost <tobi@debian.org>
Build-Depends: dpkg-dev (>= 1.22.5), cmake,
               debhelper-compat (= 13),
               default-libmysqlclient-dev,
               libpq-dev,
               libsqlite3-dev,
               unixodbc-dev
Rules-Requires-Root: no
Standards-Version: 4.6.0
Section: libs
Homepage: http://cppcms.com/wikipp/en/page/sql_connectivity
Vcs-Git: https://salsa.debian.org/debian/cppdb.git
Vcs-Browser: https://salsa.debian.org/debian/cppdb
Package: libcppdb-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libcppdb-mysql0t64 (= ${binary:Version}),
         libcppdb-odbc0t64 (= ${binary:Version}),
         libcppdb-postgresql0t64 (= ${binary:Version}),
         libcppdb-sqlite3-0t64 (= ${binary:Version}),
         libcppdb0t64 (= ${binary:Version}),
         ${misc:Depends}
Description: SQL Connectivity Library (development files)
 CppDB is an SQL connectivity library that is designed to provide platform and
 Database independent connectivity API similarly to what JDBC, ODBC and other
 connectivity libraries do.
 .
 This library is developed as part of CppCMS Project - the C++ Web Development
 Framework.
 .
 CppDB was designed with following goals in the mind:
  - Performance is the primary goal - make fastest possible SQL connectivity as
    possible
  - Transparent connection pooling support
  - Transparent prepared statements caching
  - Dynamic DB modules loading and optional static linking
  - Full and high priority support of FOSS RDBMS: MySQL, PostgreSQL, Sqlite3
  - Support as many RDBMSs as possible via cppdb-odbc bridge
  - Simplicity in use
  - Locale safety
  - Support of both explicit verbose API and brief and nice syntactic sugar
 .
 This package contains the development files.
Package: libcppdb0t64
Provides: ${t64:Provides}
Replaces: libcppdb0
Breaks: libcppdb0 (<< ${source:Version})
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Suggests: libcppdb-mysql0t64,
          libcppdb-odbc0t64,
          libcppdb-postgresql0t64,
          libcppdb-sqlite3-0t64
Description: SQL Connectivity Library (core library)
 CppDB is an SQL connectivity library that is designed to provide platform and
 Database independent connectivity API similarly to what JDBC, ODBC and other
 connectivity libraries do.
 .
 This library is developed as part of CppCMS Project - the C++ Web Development
 Framework.
 .
 CppDB was designed with following goals in the mind:
  - Performance is the primary goal - make fastest possible SQL connectivity as
    possible
  - Transparent connection pooling support
  - Transparent prepared statements caching
  - Dynamic DB modules loading and optional static linking
  - Full and high priority support of FOSS RDBMS: MySQL, PostgreSQL, Sqlite3
  - Support as many RDBMSs as possible via cppdb-odbc bridge
  - Simplicity in use
  - Locale safety
  - Support of both explicit verbose API and brief and nice syntactic sugar
 .
 This package contains the core library
Package: libcppdb-mysql0t64
Provides: ${t64:Provides}
Replaces: libcppdb-mysql0
Breaks: libcppdb-mysql0 (<< ${source:Version})
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: SQL Connectivity Library (MySQL backend)
 CppDB is an SQL connectivity library that is designed to provide platform and
 Database independent connectivity API similarly to what JDBC, ODBC and other
 connectivity libraries do.
 .
 This library is developed as part of CppCMS Project - the C++ Web Development
 Framework.
 .
 CppDB was designed with following goals in the mind:
  - Performance is the primary goal - make fastest possible SQL connectivity as
    possible
  - Transparent connection pooling support
  - Transparent prepared statements caching
  - Dynamic DB modules loading and optional static linking
  - Full and high priority support of FOSS RDBMS: MySQL, PostgreSQL, Sqlite3
  - Support as many RDBMSs as possible via cppdb-odbc bridge
  - Simplicity in use
  - Locale safety
  - Support of both explicit verbose API and brief and nice syntactic sugar
 .
 This package contains the MySQL backend
Package: libcppdb-sqlite3-0t64
Provides: ${t64:Provides}
Replaces: libcppdb-sqlite3-0
Breaks: libcppdb-sqlite3-0 (<< ${source:Version})
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: SQL Connectivity Library (sqlite3 backend)
 CppDB is an SQL connectivity library that is designed to provide platform and
 Database independent connectivity API similarly to what JDBC, ODBC and other
 connectivity libraries do.
 .
 This library is developed as part of CppCMS Project - the C++ Web Development
 Framework.
 .
 CppDB was designed with following goals in the mind:
  - Performance is the primary goal - make fastest possible SQL connectivity as
    possible
  - Transparent connection pooling support
  - Transparent prepared statements caching
  - Dynamic DB modules loading and optional static linking
  - Full and high priority support of FOSS RDBMS: MySQL, PostgreSQL, Sqlite3
  - Support as many RDBMSs as possible via cppdb-odbc bridge
  - Simplicity in use
  - Locale safety
  - Support of both explicit verbose API and brief and nice syntactic sugar
 .
 This package contains the sqlite3 backend
Package: libcppdb-postgresql0t64
Provides: ${t64:Provides}
Replaces: libcppdb-postgresql0
Breaks: libcppdb-postgresql0 (<< ${source:Version})
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: SQL Connectivity Library (PostgreSQL backend)
 CppDB is an SQL connectivity library that is designed to provide platform and
 Database independent connectivity API similarly to what JDBC, ODBC and other
 connectivity libraries do.
 .
 This library is developed as part of CppCMS Project - the C++ Web Development
 Framework.
 .
 CppDB was designed with following goals in the mind:
  - Performance is the primary goal - make fastest possible SQL connectivity as
    possible
  - Transparent connection pooling support
  - Transparent prepared statements caching
  - Dynamic DB modules loading and optional static linking
  - Full and high priority support of FOSS RDBMS: MySQL, PostgreSQL, Sqlite3
  - Support as many RDBMSs as possible via cppdb-odbc bridge
  - Simplicity in use
  - Locale safety
  - Support of both explicit verbose API and brief and nice syntactic sugar
 .
 This package contains the PostgreSQL backend
Package: libcppdb-odbc0t64
Provides: ${t64:Provides}
Replaces: libcppdb-odbc0
Breaks: libcppdb-odbc0 (<< ${source:Version})
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: SQL Connectivity Library (odbc backend)
 CppDB is an SQL connectivity library that is designed to provide platform and
 Database independent connectivity API similarly to what JDBC, ODBC and other
 connectivity libraries do.
 .
 This library is developed as part of CppCMS Project - the C++ Web Development
 Framework.
 .
 CppDB was designed with following goals in the mind:
  - Performance is the primary goal - make fastest possible SQL connectivity as
    possible
  - Transparent connection pooling support
  - Transparent prepared statements caching
  - Dynamic DB modules loading and optional static linking
  - Full and high priority support of FOSS RDBMS: MySQL, PostgreSQL, Sqlite3
  - Support as many RDBMSs as possible via cppdb-odbc bridge
  - Simplicity in use
  - Locale safety
  - Support of both explicit verbose API and brief and nice syntactic sugar
 .
 This package contains the odbc backend
 |