If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > can i use batch files instead of a line command

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-28-04, 13:43
pssheba pssheba is offline
Registered User
 
Join Date: Oct 2004
Location: israel
Posts: 7
can i use batch files instead of a line command

such as:
CREATE TABLE Customers (Customer_id INT NOT NULL PRIMARY KEY...)
Can i write it in an editor, save it as a batch file and than, rather then write the above command, simply run the batch ?
If the answer is positive, can anyone explain me how excactly i do it:
run from inside the ide or outside? Where do i save the file? What extension has the file ? What syntax?
Thanks !
Reply With Quote
  #2 (permalink)  
Old 12-01-04, 05:48
DrSmartman DrSmartman is offline
Registered User
 
Join Date: Aug 2003
Location: Reston, VA
Posts: 59
Yes, you can...

If I understand you correctly, you want to read you SQL from a file. That's simple. Simply put the SQL syntax in a text file using a normal editor. If you have multiple SQL statements, you just need to put a \n character at the end.

Sample

SELECT * FROM table1;
SELECT * FROM table2;

You can use any file extension you like, but I use a .sql naming convention. You can run this at the mysql prompt like....'mysql mydatabasename < mysqlstatements.sql'.

hope this helps...
Reply With Quote
  #3 (permalink)  
Old 12-01-04, 18:52
joeldixon66 joeldixon66 is offline
Registered User
 
Join Date: Jul 2003
Posts: 73
You can also run the file when connected to the MySQL client as follows:

Code:
SOURCE mysqlstatements.sql
__________________
Joel Dixon
Analyst Programmer
Melbourne, Australia
Reply With Quote
  #4 (permalink)  
Old 12-04-04, 04:47
pssheba pssheba is offline
Registered User
 
Join Date: Oct 2004
Location: israel
Posts: 7
Tanks a lot !

I'll use your aid !
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On