projects
/
goodguy
/
cinelerra.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
monthly update msg
[goodguy/cinelerra.git]
/
cinelerra-5.1
/
db
/
utils
/
dmp.C
1
#include<stdio.h>
2
#include<stdarg.h>
3
#include<time.h>
4
5
#include "tdb.h"
6
#include "s.C"
7
8
int main(int ac, char **av)
9
{
10
setbuf(stdout,0);
11
theDb db;
12
db.open(av[1]);
13
//db.access(av[1], 34543, 0);
14
if( !db.opened() || db.error() ) exit(1);
15
db.dmp();
16
db.commit(1);
17
db.commit(1);
18
db.close();
19
return 0;
20
}
21