RE: Insert Automatically

2001-05-31 Thread KAMRY
database,sql,query Hi guys, I appreciate it if some can help here Is it possible to do a script file like in Oracle with statements like these: insert into countries (id,country,country2) values(IDDI, Venezuela, ); insert into countries (id,country,country2) values(IDDI, Vietnam, );

RE: Insert Automatically

2001-05-31 Thread Johnny Withers
To: [EMAIL PROTECTED] Subject: RE: Insert Automatically database,sql,query Hi guys, I appreciate it if some can help here Is it possible to do a script file like in Oracle with statements like these: insert into countries (id,country,country2) values(IDDI, Venezuela, ); insert

RE: Insert Automatically

2001-05-31 Thread jaab
Dear Kal, On Thu, 31 May 2001, KAMRY wrote: database,sql,query Is it possible to do a script file like in Oracle with statements like these: insert into countries (id,country,country2) values(IDDI, Venezuela, ); insert into countries (id,country,country2) values(IDDI, Vietnam, ); insert

RE: Insert Automatically

2001-05-31 Thread Paul DuBois
. 601.209.4985 -Original Message- From: KAMRY [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 1:07 PM To: [EMAIL PROTECTED] Subject: RE: Insert Automatically database,sql,query Hi guys, I appreciate it if some can help here Is it possible to do a script file like in Oracle

RE: Insert Automatically

2001-05-31 Thread VVM Ravikumar Sarma Chengalvala
Hi, You can write a script file and run it. Regards, Ravi --- KAMRY [EMAIL PROTECTED] wrote: database,sql,query Hi guys, I appreciate it if some can help here Is it possible to do a script file like in Oracle with statements like these: insert into countries

RE: Insert Automatically [pass on command line]

2001-05-31 Thread Sean O'Brien
then run: mysql -u user -p password --database database file.sql Except don't put a space between -p and your password. :-) Better yet just -p and don't put your password on the command line. ;-) - Before posting,