On 08/03/2011, at 12:24 PM, richdang wrote:
I am pretty new in textmate and working with MySQL. Anyone know how I use SQL query to use a database in MySQL via textmate. I tried USE [database name], the database browser show 0 affected
Sounds like you got a connection. What happens when you do a real query?
show databases;
or
show tables;
or
describe your_table_name;
Do you have any tables or rows in your database?
If so, can you show us what they are?
Do you know how to do an SQL query?
You might want to google for some basic MySQL tutorials.