What is default admin for SQLite?

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?

King

Posted 2010-08-24T14:55:36.497

Reputation:

Answers

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.

bot403

Posted 2010-08-24T14:55:36.497

Reputation: 442

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.

Piskvor left the building

Posted 2010-08-24T14:55:36.497

Reputation: 2 277

1

SQLite comes with a command-line client. This is the default administration client for SQLite.

J. Polfer

Posted 2010-08-24T14:55:36.497

Reputation: 2 234