Since 4/2/2012 5:22:41 AM, robertc47 has written 6 articles and participated in 1 conversations. robertc47 signature: robertc47
robertc47's articles:
Items(6) /1
CREATE FUNCTION not working in MYSQL 5.16221 (3/6/2010 10:04:47 AM) comp.databases.mysql Would anyone know why this doesn't run
delimiter //
CREATE FUNCTION hello (s CHAR(20)) RETURNS CHAR(50)
RETURN CONCAT('Hello, ',s,'!');
//
delimiter ;
SELECT hello('world');
It comes from the MYSQL... scooper
SELECT * INTO OUTFILE fails if file exists11939 (11/20/2009 12:41:47 AM) comp.databases.mysql Dear Newsgroup
MYSQL won't overwrite an existing OUTFILE.
How can I programmatically delete the OUTFILE?
Is there a way to make the SELECT...OUTFILE overwrite the OUTFILE?
Regards scooper
... scooper
Parameters to main(int argc, char *argv[])157 (10/15/2009 8:59:18 PM) comp.lang.c++ I need to ask how to deliver the parameters (int argc, char *argv[]) to a console program in windows? The compiled program doesn't wait for them. Do you need to use a batch file? Regards, scooper ... scooper