views:

93

answers:

2

I now want to create foreign keys for all of my mew DBs. So far i have been using sqlite and MyIasm DBs so i havent used a DB that supported it. I am thinking i should install and use a MySql server with InnoDb (connected via C#).

My question is what can i use to actually see the FKs relations? I would like to see it by using a sqlite db if possible. Is there good browser that will let me see all or some of the relationship between tables and columns?

-edit- there can be multiple correct answers so i'll change this into a wiki.

A: 

Navicat for MySQL is an excellent MySQL GUI. It provides everything you mentioned (except the confusing part about SQLite + foreign keys), and is very fast and easy to work with.

gahooa
A: 

Another good option is the RazorSQL SQL GUI Tool. It supports both MySQL and SQLite and shows foreign key relationships in its database browser, although SQLite doesn't really support foreign keys so I'm not sure what you are talking about there.

Deb Timmons