Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

view table contents from telnet

Status
Not open for further replies.

hinchdog

Programmer
Feb 14, 2001
380
US
is there a way to see the table contents -- meaning the data within each row -- from the telnet consol?
 
Can you run
Code:
mysqld
? If so, use it to enter SQL commands directly to the server.

-Rob
 
Oops I mean
Code:
mysql
- the native MySQL console ...

Sorry for the typo

-Rob
 
Try just typing
Code:
mysql
. If your shell doesn't recognise the command, then you need to change to the
Code:
bin
subdirectory where you installed MySQL (on Windows try
Code:
C:\mysql
or
Code:
C:\Program Files\mysql
- on Linux/Unix try
Code:
/usr/local/mysql
).

Once you've found the
Code:
mysql
binary you can use it to connect to your server. This is described on
If you post any errors you get that will help identify any problems.

-Rob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top