To connect to a mysql database use the below command from command line
mysql -u DBUSERNAME -h DBSERVER -p DBNAME
After entering the below command you will be prompted to enter your password
Good link to refer for mysql commands
http://www.pantz.org/software/mysql/mysqlcommands.html
To connect to oracle use
Sqlplus
and to find all the tables which are present in the database use
select * from user_objects where object_type = 'TABLE';
To add sql driver to squirrelsql
Follow the below link
http://javaboutique.internet.com/tutorials/squirrel/
How to find out sid of your database
http://forums.oracle.com/forums/thread.jspa?threadID=622348
mysql -u DBUSERNAME -h DBSERVER -p DBNAME
DBUSERNAME- user name to connect to the database
DBSERVER- Server where the database is hosted
DBNAME: Database in the mysql server which you will be connecting
After entering the below command you will be prompted to enter your password
Good link to refer for mysql commands
http://www.pantz.org/software/mysql/mysqlcommands.html
To connect to oracle use
Sqlplus
and to find all the tables which are present in the database use
select * from user_objects where object_type = 'TABLE';
To add sql driver to squirrelsql
Follow the below link
http://javaboutique.internet.com/tutorials/squirrel/
How to find out sid of your database
http://forums.oracle.com/forums/thread.jspa?threadID=622348