db.new
| Syntax |
db.new (f)
|
| Params |
f is a filespec or path string specifying where a new Frontier object database file is to be created.
|
| Action |
Creates a new, empty database file at the indicated file system location, replacing any existing file, if present.
|
| Returns |
True.
|
| Examples |
db.new ("System:Frontier:new.root") » true
|
| Notes |
The database file created by this verb is minimal and contains virtually no user interface support objects. It is generally only useful for storing information manipulated by scripts. The new database file is not opened for further access; db.open must be called before operating on it further. This parallels the relationship between file.new and file.open.
|
| See Also |
db.open
|