Tagged Questions
3
votes
1answer
86 views
Automatic Semicolon Insertion in JavaScript without parsing
I'm writing a JavaScript preprocessor which automatically inserts semicolons in places where it's necessary. Don't ask why.
Now I know that the general way to tackle this problem is to write a ...
1
vote
3answers
294 views
What kind of statements don't require semicolon termination in C++?
Is there a rule regarding which statements don't need to be terminated with a semicolon?
1
vote
1answer
214 views
Parsing SQL containing semicolon (in PHP)
I coded a sql parser that load data from a mysql dump, the problem is that some sql statements contain semicolon themselves so my parser take it as EOL as I use
$sqlRows = explode(';', $sqlFile);
...
2
votes
2answers
622 views
How to execute mysql code with semicolon in php?
The code is
INSERT INTO `semicolon` VALUES ('1', 'a:1:{s:4:\"size\"';\s:2:\"24\";\}');
As you might see in double single quotes there is ; - semicolon and it splits the code because its the ...