~ubuntu-branches/ubuntu/wily/sqlite3/wily

« back to all changes in this revision

Viewing changes to www/c3ref/enable_load_extension.html

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2011-09-27 00:09:20 UTC
  • mfrom: (0.23.1) (1.6.1) (16.3.5 oneiric)
  • Revision ID: package-import@ubuntu.com-20110927000920-8d87xm2c8837llx3
Tags: 3.7.7-2ubuntu2
Make sure to build lemon when cross-compiling.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
    padding: 8px 1%;
9
9
}
10
10
 
11
 
a { color: #45735f }
 
11
a { color: #044a64 }
12
12
a:visited { color: #734559 }
13
13
 
14
14
.logo { position:absolute; margin:3px; }
22
22
}
23
23
 
24
24
.toolbar {
25
 
  font-variant: small-caps;
26
25
  text-align: center;
27
26
  line-height: 1.6em;
28
27
  margin: 0;
29
 
  padding:1px 8px;
 
28
  padding: 0px 8px;
30
29
}
31
30
.toolbar a { color: white; text-decoration: none; padding: 6px 12px; }
32
31
.toolbar a:visited { color: white; }
33
 
.toolbar a:hover { color: #80a796; background: white; }
 
32
.toolbar a:hover { color: #044a64; background: white; }
34
33
 
35
34
.content    { margin: 5%; }
36
35
.content dt { font-weight:bold; }
38
37
.content ul { padding:0px; padding-left: 15px; margin:0px; }
39
38
 
40
39
/* rounded corners */
41
 
.se  { background: url(../images/se.png) 100% 100% no-repeat #80a796}
42
 
.sw  { background: url(../images/sw.png) 0% 100% no-repeat }
43
 
.ne  { background: url(../images/ne.png) 100% 0% no-repeat }
44
 
.nw  { background: url(../images/nw.png) 0% 0% no-repeat }
 
40
.se  { background: url(../images/se.gif) 100% 100% no-repeat #044a64}
 
41
.sw  { background: url(../images/sw.gif) 0% 100% no-repeat }
 
42
.ne  { background: url(../images/ne.gif) 100% 0% no-repeat }
 
43
.nw  { background: url(../images/nw.gif) 0% 0% no-repeat }
45
44
 
46
45
/* Things for "fancyformat" documents start here. */
 
46
.fancy img+p {font-style:italic}
47
47
.fancy .codeblock i { color: darkblue; }
48
 
.fancy h1,.fancy h2,.fancy h3,.fancy h4 {font-weight:normal;color:#80a796}
 
48
.fancy h1,.fancy h2,.fancy h3,.fancy h4 {font-weight:normal;color:#044a64}
49
49
.fancy h2 { margin-left: 10px }
50
50
.fancy h3 { margin-left: 20px }
51
51
.fancy h4 { margin-left: 30px }
69
69
<div><!-- container div to satisfy validator -->
70
70
 
71
71
<a href="../index.html">
72
 
<img class="logo" src="../images/SQLite.gif" alt="SQLite Logo"
 
72
<img class="logo" src="../images/sqlite370_banner.gif" alt="SQLite Logo"
73
73
 border="0"></a>
74
74
<div><!-- IE hack to prevent disappearing logo--></div>
75
75
<div class="tagline">Small. Fast. Reliable.<br>Choose any three.</div>
76
76
 
77
77
<table width=100% style="clear:both"><tr><td>
78
78
  <div class="se"><div class="sw"><div class="ne"><div class="nw">
 
79
  <table width=100% style="padding:0;margin:0;cell-spacing:0"><tr>
 
80
  <td width=100%>
79
81
  <div class="toolbar">
80
82
    <a href="../about.html">About</a>
81
83
    <a href="../sitemap.html">Sitemap</a>
83
85
    <a href="../download.html">Download</a>
84
86
    <a href="../copyright.html">License</a>
85
87
    <a href="../news.html">News</a>
86
 
    <!-- <a href="../dev.html">Developers</a> -->
87
88
    <a href="../support.html">Support</a>
88
 
  </div></div></div></div></div>
 
89
  </div>
 
90
<script>
 
91
  gMsg = "Search SQLite Docs..."
 
92
  function entersearch() {
 
93
    var q = document.getElementById("q");
 
94
    if( q.value == gMsg ) { q.value = "" }
 
95
    q.style.color = "black"
 
96
    q.style.fontStyle = "normal"
 
97
  }
 
98
  function leavesearch() {
 
99
    var q = document.getElementById("q");
 
100
    if( q.value == "" ) { 
 
101
      q.value = gMsg
 
102
      q.style.color = "#044a64"
 
103
      q.style.fontStyle = "italic"
 
104
    }
 
105
  }
 
106
</script>
 
107
<td>
 
108
    <div style="padding:0 1em 0px 0;white-space:nowrap">
 
109
    <form name=f method="GET" action="http://www.sqlite.org/search">
 
110
      <input id=q name=q type=text
 
111
       onfocus="entersearch()" onblur="leavesearch()" style="width:24ex;padding:1px 1ex; border:solid white 1px; font-size:0.9em ; font-style:italic;color:#044a64;" value="Search SQLite Docs...">
 
112
      <input type=submit value="Go" style="border:solid white 1px;background-color:#044a64;color:white;font-size:0.9em;padding:0 1ex">
 
113
    </form>
 
114
    </div>
 
115
  </table>
 
116
</div></div></div></div>
89
117
</td></tr></table>
 
118
<div class=startsearch></div>
90
119
  
91
120
<a href="intro.html"><h2>SQLite C Interface</h2></a><h2>Enable Or Disable Extension Loading</h2><blockquote><pre>int sqlite3_enable_load_extension(sqlite3 *db, int onoff);
92
121
</pre></blockquote><p>