1
Workbench is MySQL default. Correct me if I'm wrong. I dont believe SQLite has it own default admin. Is there any recommendation for the admin?
1
Workbench is MySQL default. Correct me if I'm wrong. I dont believe SQLite has it own default admin. Is there any recommendation for the admin?
2
Theres not much to administer in a SQLite DB. There are no users, extra databases, or even any server settings to speak of. I would use a generic data modeling tool to create my table structures and relations then use the sqlite command line tool to execute the create table scripts. Once your tables are in place then use whatever tool or api you were going to use anyways to interact with the database.
1
I've had good experience with the Firefox add-on SQLite Manager - although it's primarily intended to work with FF's SQLite databases, it is usable for unrelated SQLite databases.
1
SQLite comes with a command-line client. This is the default administration client for SQLite.