Re: create database+tables=ThanX!!

2005-04-03 Thread Niki Lampropoulou
thank you all for your help! http://nikilambropoulos.org Send instant messages to your online friends http://uk.messenger.yahoo.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: create database+tables

2005-04-02 Thread Scott Klarenbach
Do this. Save the create tables commands in a textfile on your harddrive called 'C:\tables.sql' Load mysql from the command line. @ the prompt, type the following mysql>create database `myDBName`; mysql>use `myDBName`; mysql>source C:\tables.sql; that's it! On Apr 2, 2005 10:26 AM, Niki Lampr