I need to be able to insert information into a MySQL database using a file generated by my web hosting service but I have forgotten the command and can't seem to find it anywhere on google. The file already has all of the SQL commands in it. EX:
-- MySQL dump 9.09
-- Host: localhost Database: vault_xmb4
-- Server version 4.0.15-standard
--
-- Table structure for table news
DROP TABLE IF EXISTS news;
CREATE TABLE news (
news_name text NOT NULL,
news_date date NOT NULL default '0000-00-00',
news_message text NOT NULL
) TYPE=MyISAM;
Thanks!