To develop my database, I installed Apache & MYSQL on my computer. Since I am still developing the site, I frequently recreate, and change the table structure using the following commands after deleting the database.
mysqladmin -u username -ppassword create databasename
mysql -u username -ppassword<filename.sql
mysqlimport -L -h localhost -u username -ppassword --fields-terminated-by="|" databasename c:/directory/tables/filename.txt
...
Is it possible for me to use this method of table construction on the server?
Thanks