~ubuntu-branches/ubuntu/lucid/edbrowse/lucid

« back to all changes in this revision

Viewing changes to src/dbstubs.c

  • Committer: Bazaar Package Importer
  • Author(s): Kapil Hari Paranjape
  • Date: 2009-03-01 16:55:12 UTC
  • mfrom: (1.1.5 upstream) (3.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090301165512-97yhte20cy3c4q2w
Tags: 3.4.1-1
* New upstream version (3.4.1).
* debian/rules:
  - add "touch build-stamp" to build-stamp target.
  - modify clean target to use clean target in src/makefile.
  - remove debian/edbrowse.1 in clean target.
  - added "-lcurl" to linker flags.
* debian/control:
  - added libcurl4-openssl-dev to Build-Depends
  - Standards Version 3.8.0. No changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
bool
12
12
sqlReadRows(const char *filename, char **bufptr)
13
13
{
14
 
    setError(316);
 
14
    setError(MSG_DBNotCompiled);
15
15
    *bufptr = EMPTYSTRING;
16
16
    return false;
17
17
}                               /* sqlReadRows */
26
26
{
27
27
}                               /* showColumns */
28
28
 
 
29
void
 
30
showForeign(void)
 
31
{
 
32
}                               /* showForeign */
 
33
 
 
34
bool
 
35
showTables(void)
 
36
{
 
37
}                               /* showTables */
 
38
 
29
39
bool
30
40
sqlDelRows(int start, int end)
31
41
{
40
50
sqlAddRows(int ln)
41
51
{
42
52
}                               /* sqlAddRows */
 
53
 
 
54
bool
 
55
ebConnect(void)
 
56
{
 
57
    setError(MSG_DBNotCompiled);
 
58
    return false;
 
59
}                               /* ebConnect */
 
60
 
 
61
int
 
62
goSelect(int *startLine, char **rbuf)
 
63
{
 
64
    *rbuf = EMPTYSTRING;
 
65
    return -1;
 
66
}                               /* goSelect */