~ubuntu-branches/ubuntu/karmic/edbrowse/karmic

« back to all changes in this revision

Viewing changes to dbstubs.c

  • Committer: Bazaar Package Importer
  • Author(s): Kapil Hari Paranjape
  • Date: 2008-04-09 18:55:23 UTC
  • mfrom: (1.1.4 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080409185523-dqokcloumyn1ibn4
Tags: 3.3.4-1
* New upstream version (3.3.4).
 - Convert between iso8859-1 and utf-8 on the fly.
 - Support reading of pdf using pdftohtml.
 - French translation of html documentation.
 - Old html documentation renamed to usersguide.
 - Additional documentation on philosophy.
* debian/control:
 - Changed homepage to sourcefource site.
 - Moved homepage from description to its own field.
 - Added "poppler-utils | xpdf-utils" to Recommends.
 - Added "www-browser", "mail-reader" and "editor" to Provides. 
 - Removed "XS-" from Vcs-Svn tag.
 - Standards-Version: 3.7.3
* debian/docs: Added new documentation files
  from "doc/" subdirectory.
* debian/watch: Updated to use sourceforge site.
* debian/edbrowse.doc-base:
  - Changed name of upstream provided html documentation from
    "ebdoc.html" to "usersguide.html".
  - Changed section from "net" to "Network/Web Browsing".
* debian/install: Compiled binary is now in "src/".

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* dbstubs.c
2
 
 * Stubs for the database functions.
3
 
 * After all, most people will compile this without database access.
4
 
 * Copyright (c) Karl Dahlke, 2007
5
 
 * This file is part of the edbrowse project, released under GPL.
6
 
 */
7
 
 
8
 
#include "eb.h"
9
 
 
10
 
 
11
 
bool
12
 
sqlReadRows(const char *filename, char **bufptr)
13
 
{
14
 
    setError(316);
15
 
    *bufptr = EMPTYSTRING;
16
 
    return false;
17
 
}                               /* sqlReadRows */
18
 
 
19
 
void
20
 
dbClose(void)
21
 
{
22
 
}                               /* dbClose */
23
 
 
24
 
void
25
 
showColumns(void)
26
 
{
27
 
}                               /* showColumns */
28
 
 
29
 
bool
30
 
sqlDelRows(int start, int end)
31
 
{
32
 
}                               /* sqlDelRows */
33
 
 
34
 
bool
35
 
sqlUpdateRow(pst source, int slen, pst dest, int dlen)
36
 
{
37
 
}                               /* sqlUpdateRow */
38
 
 
39
 
bool
40
 
sqlAddRows(int ln)
41
 
{
42
 
}                               /* sqlAddRows */