Creates a new database with the specified input (may be empty).
(self, name, content)
| 151 | return Query(self, querytxt) |
| 152 | |
| 153 | def create(self, name, content): |
| 154 | """Creates a new database with the specified input (may be empty).""" |
| 155 | self.__send_input(8, name, content) |
| 156 | |
| 157 | def add(self, path, content): |
| 158 | """Adds a new resource to the opened database.""" |
no test coverage detected