Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make the prosupport.html page local. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | mobile-friendly |
Files: | files | file ages | folders |
SHA1: |
a65f9087cafa87bc43c355871e87acaa |
User & Date: | drh 2016-09-01 21:43:30.027 |
Context
2016-09-01
| ||
21:53 | Refinements to the prosupport.html page. (check-in: cc74d20ccd user: drh tags: mobile-friendly) | |
21:43 | Make the prosupport.html page local. (check-in: a65f9087ca user: drh tags: mobile-friendly) | |
20:58 | Hack to get "make searchdb" running again. (check-in: 304b04a18c user: drh tags: mobile-friendly) | |
Changes
Changes to document_header.tcl.
︙ | ︙ | |||
31 32 33 34 35 36 37 | <li class='mobileonly'><a href="javascript:void(0)" onclick='toggle_div("submenu")'> Menu</a> <li class='wideonly'><a href='${path}about.html'>About</a> <li class='desktoponly'><a href="${path}docs.html">Documentation</a> <li class='desktoponly'><a href="${path}download.html">Download</a> <li class='wideonly'><a href='${path}copyright.html'>License</a> <li class='desktoponly'><a href="${path}support.html">Support</a> | | | | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | <li class='mobileonly'><a href="javascript:void(0)" onclick='toggle_div("submenu")'> Menu</a> <li class='wideonly'><a href='${path}about.html'>About</a> <li class='desktoponly'><a href="${path}docs.html">Documentation</a> <li class='desktoponly'><a href="${path}download.html">Download</a> <li class='wideonly'><a href='${path}copyright.html'>License</a> <li class='desktoponly'><a href="${path}support.html">Support</a> <li class='desktoponly'><a href="${path}prosupport.html">Purchase</a> <li class='search' id='search_menubutton'> <a href="javascript:void(0)" onclick='toggle_div("searchmenu")'>Search</a> </ul> </div> <div class="menu submenu" id="submenu"> <ul> <li><a href='${path}docs.html'>Documentation</a> <li><a href='${path}support.html'>Support</a> <li><a href='${path}prosupport.html'>Purchase</a> </ul> </div> <div class="searchmenu" id="searchmenu"> <form method="GET" action="search"> <span class="desktoponly">Search for:</span> <input type="text" name="q"> <input type="submit" value="Go"> </form> |
︙ | ︙ |
Added pages/prosupport.in.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 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 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 | <title>SQLite Pro Support</title> <tcl>hd_keywords {professional support}</tcl> <h1 align="center"> Professional Support & Extension Products </h1> <tcl> set entrylist {} proc support_entry {itemno title desc cost link1 link2} { global entrylist lappend entrylist $itemno $title $desc $cost $link1 $link2 } proc generate_support_html {} { global entrylist hd_putsnl "<div class='desktoponly'>" hd_putsnl "<table border=0 cellspacing=20>" foreach {itemno title desc cost link1 link2} $entrylist { hd_putsnl "<tr><td valign=top><a name='item$itemno'><b>$itemno.</b></td>" hd_putsnl "<td valign=top><b>$title.</b> $desc</td>" hd_putsnl "<td valign=top>$cost</td>" foreach {tag url} $link1 break hd_putsnl "<td valign=top><a class='button' href='$url'>$tag</a></td>" foreach {tag url} $link2 break hd_putsnl "<td valign=top><a class='button' href='$url'>$tag</a></td>" hd_putsnl "</tr>" } hd_putsnl "</table></div>" hd_putsnl "<div class='mobileonly'>" hd_putsnl "<ol>" foreach {itemno title desc cost link1 link2} $entrylist { hd_putsnl "<li value=$itemno><p>" hd_putsnl "<b>$title.</b> $desc" hd_putsnl "<p>Cost: $cost" foreach {tag url} $link1 break hd_putsnl "<p><a class='button' href='$url'>$tag</a>" foreach {tag url} $link2 break hd_putsnl "<a class='button' href='$url'>$tag</a>" hd_putsnl "</li>" } hd_putsnl "</ol></div>" set entrylist {} } </tcl> <h2>Support <font size=2>(<a href="#detail">details below</a>)</font></h2> <tcl> support_entry 1 {Public Mailing List} { Help and advice via email from a world-wide community of experts. } Free \ {Archives http://www.mail-archive.com/sqlite-users%40mailinglists.sqlite.org/}\ {Sign-up http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users} support_entry 2 {Annual Maintenance Subscription} { Private, expert email advice from the developers of SQLite. } {$1500/year} \ {{More Info} http://www.hwaci.com/sw/sqlite/ams.html} \ {{Buy Now!} http://www.hwaci.com/cgi-bin/sams-step1} support_entry 3 {Technical Support} { High-priority email and phone support directly from the SQLite developers. Guaranteed response time available as an option. } {$8K-$35K/year} \ {{More Info} http://www.hwaci.com/sw/sqlite/tech.html} \ {{Request A Quote} http://www.hwaci.com/sw/sqlite/contact.html} support_entry 4 {SQLite Consortium Membership} { Premium enterprise support including on-site visits and access to all proprietary extensions and test suites. } {$75K/year} \ {{More Info} http://www.hwaci.com/sw/sqlite/member.html} \ {{Request A Quote} http://www.hwaci.com/sw/sqlite/contact.html} generate_support_html </tcl> <h2>Licenses <font size=2>(<a href="#ext">details below</a>)</font></h2> <tcl> support_entry 5 {SQLite License} { Warranty of title and perpetual right-to-use for the SQLite source code. } {$6000 one time fee} \ {{More Info} https://www.sqlite.org/copyright.html} \ {{Buy Now!} http://www.hwaci.com/cgi-bin/license-step1} support_entry 6 {SQLite Encryption Extension (SEE)} { A drop-in replacement for public-domain SQLite source code that has the added ability to read/write AES-encrypted databases. } {$2000 one time fee} \ {{More Info} http://www.hwaci.com/sw/sqlite/see.html} \ {{Buy Now!} http://www.hwaci.com/cgi-bin/see-step1} support_entry 7 {Compressed And Encrypted Read-Only Database (CEROD)} { A drop-in replacement for public-domain SQLite source code that has the added ability to read database that has been both compressed and encrypted. } {$2000 one time fee} \ {{More Info} http://www.hwaci.com/sw/sqlite/cerod.html} \ {{Buy Now!} http://www.hwaci.com/cgi-bin/scerod-step1} support_entry 8 {The ZIPVFS Read/Write Compressed Database Extension} { The ZIPVFS extension automatically compresses and encrypts your data as it is written to disk, and decompressed and decrypts it while reading. } {$4000 one time fee} \ {{More Info} http://www.hwaci.com/sw/sqlite/zipvfs.html} \ {{Buy Now!} http://www.hwaci.com/cgi-bin/zipvfs-step1} generate_support_html </tcl> <h2>Special Services <font size=2>(<a href="#th3">details below</a>)</font></h2> <tcl> support_entry 9 {TH3 Testing Support} { The <a href="https://sqlite.org/th3.html">TH3 test harness</a> is an aviation-grade test suite for SQLite. SQLite developers can run TH3 on specialized hardware and/or using specialized compile-time options, according to customer specification, either remotely or on customer premises. Pricing for this services is on a case-by-case basis depending on requirements. } {call} \ {{More Info} https://www.sqlite.org/th3.html} \ {{Request A Quote} http://www.hwaci.com/sw/sqlite/contact.html} generate_support_html </tcl> <a name="detail"></a> <h2>Further Information</h2> <p>The SQLite software free and it works great. Most people use SQLite in their products and services without getting any kind of license or support.</p> <p>Free support for SQLite is available on the public SQLite mailing list: <a href="mailto:sqlite-users@mailinglists.sqlite.org">sqlite-users@mailinglists.sqlite.org</a>. The mailing list is monitored by a large community of experts, including the core SQLite development team, who are able to resolve just about any problems with SQLite that you are likely to have.</p> <p>You can browse the <a href="http://www.mail-archive.com/sqlite-users%40mailinglists.sqlite.org/"> mailing list archives</a> or <a href="http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users"> sign-up</a> as a mailing list member. To send a question to the mailing list, it is recommended that you <a href="http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users"> sign-up</a>, but you can simply send an email message to <a href="mailto:sqlite-users@mailinglists.sqlite.org">sqlite-users@mailinglists.sqlite.org</a> and your question will probably appear on the mailing list in about 24 hours. (Questions from non-members are moderated, which is the reason for the 24-hour delay.) <p>If you do not want to discuss your product on an open forum, an <a href="http://www.hwaci.com/sw/sqlite/ams.html">Annual Maintenance Subscription</a> or "AMS" might serve your needs better. An AMS entitles you to private email support directly from the developers of SQLite. The level of support with an AMS is similar to the support one gets from the public mail list except that an AMS includes a unilateral promise of non-disclosure, so with an AMS you can discuss your issues with the SQLite developers in private, without the whole world watching. An AMS costs $1500 per year.</p> <p>Users with more advanced support needs can opt for a <a href="http://www.hwaci.com/sw/sqlite/tech.html">Technical Support Agreement</a>. Technical support agreements are customized to the needs of each individual client, but generally include direct telephone support and priority handling of issues and bugs. Guaranteed response time is available as an option to those to need it. The cost of technical support varies according to customer needs but is generally in the range of $8000 to $35000 per year.</p> <p>If SQLite is "mission critical" to your company, then you may want to becoming an <a href="http://www.hwaci.com/sw/sqlite/member.html">SQLite Consortium Member</a>. The SQLite Consortium is a collaboration of companies who sponsor ongoing development of SQLite in exchange for enterprise-level technical support, on-site visits from the SQLite developers, unlimited access to all licensed products, and strong guarantees that SQLite will remain in the public domain, free and independent, and will not come under the control of a competitor. The cost of consortium membership is $75000 per year.</p> <a name="ext"></a> <h2>Software Licenses</h2> <p>The SQLite source code is in the <a href="https://www.sqlite.org/copyright.html">public domain</a>, and is free for use by anyone and for any purpose. No license is required. However, some users desire a license so that they can have warranty of title, or just because their company lawyers say they need one. A <a href="http://www.hwaci.com/cgi-bin/license-step1">perpetual license</a> and warranty of title for the core SQLite source code is available for this purpose.</p> <p>The <a href="http://www.hwaci.com/cgi-bin/see-step1">SQLite Encryption Extension (SEE)</a>, the <a href="http://www.hwaci.com/cgi-bin/zipvfs-step1">ZIPVFS Extension</a>, and the <a href="http://www.hwaci.com/cgi-bin/scerod-step1">Compressed and Encrypted ReadOnly Database (CEROD)</a> extension are enhanced versions of SQLite that handle encrypted and/or compressed databases. SEE can read and write encrypted databases. SEE encrypts all database content, including metadata, so that the database file appears as white noise. ZIPVFS compresses the database on-the-fly using application-supplied compression and decompression functions. CEROD reads a compressed database that is also optionally encrypted. All of SEE, ZIPVFS, and CEROD are supplied in source code form only; the licensee is responsible for compiling the products for their chosen platform. It is not difficult to compile any of these extension. All products come in the form of an <a href="https://www.sqlite.org/amalgamation.html">amalgamated source file</a> named "sqlite3.c". So compiling SEE, ZIPVFS, or CEROD into an application is simply a matter of substituting the SEE, ZIPVFS, or CEROD-enabled sqlite3.c source file in place of the public-domain sqlite3.c source file and recompiling. Licenses for SEE, ZIPVFS, and CEROD are perpetual. All three extension can read and write ordinary, uncompressed and unencrypted database files.</p> <a name="th3"></a> <h2>Testing Services</h2> <p>The <a href="https://www.sqlite.org/th3.html">Test Harness #3 (TH3)</a> is a suite of test cases for SQLite that provide 100% branch test coverage (and 100% modified condition/decision coverage) for the core SQLite in an as-deployed configuration using only published and documented interfaces. TH3 is designed for use with embedded devices, and is compatible with DO-178B. Every release of the public-domain SQLite is tested using TH3, and so all users benefit from the TH3 tests. But the TH3 tests are not themselves public. Hardware or system manufactures who want to have TH3 test run on their systems can negotiation a service agreement to have the SQLite Developers run those tests.</p> <h2>About The SQLite Team</h2> <p>Paid support options and products are provided by Hipp, Wyrick & Company, Inc., (Hwaci), a <a href="http://en.wikipedia.org/wiki/Georgia_(U.S._state)">Georgia</a> corporation with headquarters in <a href="http://en.wikipedia.org/wiki/Charlotte,_North_Carolina"> Charlotte, North Carolina</a>. Hwaci has been in continuous operation since 1992. Hwaci has an international team of employees and associates representing the best available talent. We are a 100% engineering company. There is no sales staff. Our goal is to provide outstanding service and honest advice without spin or sales-talk.</p> <p>Hwaci is a small company but it is also closely held and debt-free and has low fixed costs, which means that it is largely immune to buy-outs and take-overs and market down-turns. Hwaci intends to continue operating in its current form, and at roughly its current size until approximately the year 2050. We expect to be here when you need us, even if that need is many years in the future.</p> </body></html> |