Documentation Source Text

Check-in [d45b5ab320]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Add Intuit to the list of famous users.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: d45b5ab3204fbc97b2f4bb60cd479ef84179d1d3
User & Date: drh 2011-02-23 21:21:33.337
Context
2011-02-23
21:27
Make the opcode formatter resistent to comment text that looks like hyperlinks but is really an array index. (check-in: 479052b445 user: drh tags: trunk)
21:21
Add Intuit to the list of famous users. (check-in: d45b5ab320 user: drh tags: trunk)
2011-02-21
14:46
Add a FAQ to for the ECCN for SQLite. (check-in: 4787eddcd9 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Added images/foreignlogos/intuit.gif.

cannot compute difference between binary files

Changes to pages/famous.in.
109
110
111
112
113
114
115












116
117
118
119
120
121
122
operating system, and in the 
[http://www.google.com/chrome | Chrome Web Browser].
People are suspicious that Google uses SQLite for lots of other things
that we do not know about yet.
Engineers at Google have made extensive contributions to the
full-text search subsystem within SQLite.
</td>













<tr><td valign="top">
<a href="http://www.mcafee.com/">
<img src="images/foreignlogos/mcaffee.gif" border="0"></a></td>
<td>
[http://www.mcafee.com/ | McAfee] uses SQLite in its antivirus 
programs.  







>
>
>
>
>
>
>
>
>
>
>
>







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
operating system, and in the 
[http://www.google.com/chrome | Chrome Web Browser].
People are suspicious that Google uses SQLite for lots of other things
that we do not know about yet.
Engineers at Google have made extensive contributions to the
full-text search subsystem within SQLite.
</td>

<tr><td valign="top">
<a href="http://www.intuit.com/">
<img src="images/foreignlogos/intuit.gif" border="0"></a></td>
<td>
[http://www.intuit.com/ | Intuit] apparently uses SQLite in 
[http://www.quickbooks.com/ | QuickBooks] and in
[http://www.turbotax.com/ | TurboTax] to judge from some error
reports from users seen 
[http://community.intuit.com/posts/database-error-sqlite-error-code1 | here] and
[https://ttlc.intuit.com/post/show_full/cJf8mIhC4r4jjracfArQzM/when-i-try-to-update-turbotax-i-receive-an-unexpected-error-message | here].
</td>

<tr><td valign="top">
<a href="http://www.mcafee.com/">
<img src="images/foreignlogos/mcaffee.gif" border="0"></a></td>
<td>
[http://www.mcafee.com/ | McAfee] uses SQLite in its antivirus 
programs.  
Changes to wrap.tcl.
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
  if {[llength $x2]==1} {
    set content $kw
    regsub {\([^)]*\)} $content {} kw
    regsub {=.*} $kw {} kw
  } else {
    set content [string trim [lindex $x2 1]]
  }
  if {![regexp {^http:} $kw]} {
    regsub -all {[^a-zA-Z0-9_.#/ -]} $kw {} kw
  }
  global hd llink glink backlink
  if {$hd(enable-main)} {
    set fn $hd(fn-main)
    if {$hd(fragment)!=""} {
      set srcurl $fn#$hd(fragment)
    } else {
      set srcurl $fn
    }
    if {[regexp {^http:} $kw]} {
      puts -nonewline $hd(main) \
        "<a href=\"$kw\">$content</a>"
    } elseif {[regexp {^[Tt]icket #(\d+)$} $kw all tktid]} {
      set url http://www.sqlite.org/cvstrac/tktview?tn=$tktid
      puts -nonewline $hd(main) \
        "<a href=\"$url\">$content</a>"
    } elseif {[info exists llink($fn:$kw)]} {







|










|







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
  if {[llength $x2]==1} {
    set content $kw
    regsub {\([^)]*\)} $content {} kw
    regsub {=.*} $kw {} kw
  } else {
    set content [string trim [lindex $x2 1]]
  }
  if {![regexp {^https?:} $kw]} {
    regsub -all {[^a-zA-Z0-9_.#/ -]} $kw {} kw
  }
  global hd llink glink backlink
  if {$hd(enable-main)} {
    set fn $hd(fn-main)
    if {$hd(fragment)!=""} {
      set srcurl $fn#$hd(fragment)
    } else {
      set srcurl $fn
    }
    if {[regexp {^https?:} $kw]} {
      puts -nonewline $hd(main) \
        "<a href=\"$kw\">$content</a>"
    } elseif {[regexp {^[Tt]icket #(\d+)$} $kw all tktid]} {
      set url http://www.sqlite.org/cvstrac/tktview?tn=$tktid
      puts -nonewline $hd(main) \
        "<a href=\"$url\">$content</a>"
    } elseif {[info exists llink($fn:$kw)]} {
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
    } else {
      puts stderr "ERROR: unknown hyperlink target: $kw"
      puts -nonewline $hd(main) "<font color=\"red\">$content</font>"
    }
    lappend backlink($kw) $srcurl
  }
  if {$hd(enable-aux)} {
    if {[regexp {^http:} $kw]} {
      puts -nonewline $hd(aux) \
        "<a href=\"$kw\">$content</a>"
    } elseif {[regexp {^[Tt]icket #(\d+)$} $kw all tktid]} {
      set url http://www.sqlite.org/cvstrac/tktview?tn=$tktid
      puts -nonewline $hd(aux) \
        "<a href=\"$url\">$content</a>"
    } elseif {[info exists glink($kw)]} {







|







123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
    } else {
      puts stderr "ERROR: unknown hyperlink target: $kw"
      puts -nonewline $hd(main) "<font color=\"red\">$content</font>"
    }
    lappend backlink($kw) $srcurl
  }
  if {$hd(enable-aux)} {
    if {[regexp {^https?:} $kw]} {
      puts -nonewline $hd(aux) \
        "<a href=\"$kw\">$content</a>"
    } elseif {[regexp {^[Tt]icket #(\d+)$} $kw all tktid]} {
      set url http://www.sqlite.org/cvstrac/tktview?tn=$tktid
      puts -nonewline $hd(aux) \
        "<a href=\"$url\">$content</a>"
    } elseif {[info exists glink($kw)]} {