CDBFLITE lets you work on DBF files from the command line. You can perform various operations without being in batch mode.
The program is a powerful and multi-featured command line DBF viewer and editor. It is similar in some ways to SQL.
Though the command-line syntax differs, the principles are the same. Compare:
SELECT * FROM somefile.dbf
CDBFlite somefile.dbf /select:*
UPDATE somefile.dbf SET name="John",age=30 where id=1000
CDBFlite somefile.dbf /filter:id=1000 /field:name="John",age=30 /update
DELETE * FROM somefile.dbf WHERE age>50
CDBFlite somefile.dbf /filter:age>50 /delete:all /clear /pack
CDBFlite supports all types of existing fields, including memo fields.
CDBFlite can be used on a web server.
|