| 82 | } |
| 83 | |
| 84 | static bool create_db(void) |
| 85 | { |
| 86 | acl::db_sqlite db(__dbfile); |
| 87 | |
| 88 | if (db.open() == false) |
| 89 | { |
| 90 | printf("open dbfile: %s error\r\n", __dbfile.c_str()); |
| 91 | return (false); |
| 92 | } |
| 93 | db.show_conf(); |
| 94 | return (tbl_create(db)); |
| 95 | } |
| 96 | |
| 97 | int main(void) |
| 98 | { |
no test coverage detected
searching dependent graphs…