MYSQL INSERT INTO
#3

@Rajat_Pawar: It's not needed in the code above. However, some people prefer to make this functions like this:
FUNCTION('string data');
And you can use:
FUNCTION("string data");
Do you see the differences? The ' and the ".
When you use the ' to make this, using that character again would mean that the string is ended, like this:
FUNCTION('string data '1' '2'');
This would mean that the string would stop reading here:
FUNCTION ('string data '
Then you'll get errors. However, when you use \', it will be calculated as a normal ' so that this won't happen. But PaulDiman used it like this: FUNCTION("string data"); so it's not needed (as far as I know)

I hope you understood that because I have no idea how to explain it else.
Reply


Messages In This Thread
MYSQL INSERT INTO - by PaulDinam - 18.01.2013, 10:39
Re: MYSQL INSERT INTO - by RajatPawar - 18.01.2013, 11:08
Re: MYSQL INSERT INTO - by Kwarde - 18.01.2013, 11:17
Re: MYSQL INSERT INTO - by RajatPawar - 18.01.2013, 11:22
Re: MYSQL INSERT INTO - by Kwarde - 18.01.2013, 11:32
Re: MYSQL INSERT INTO - by Djole1337 - 18.01.2013, 11:43

Forum Jump:


Users browsing this thread: 2 Guest(s)