| 
| Subject: | // Checking whether the line is a... | 
|---|
 | Summary: | Package rating comment | 
|---|
 | Messages: | 3 | 
|---|
 | Author: | Kyle Shenk | 
|---|
 | Date: | 2008-10-31 16:39:11 | 
|---|
 | Update: | 2010-02-10 15:55:00 | 
|---|
 |  |  |  | 
Kyle Shenk rated this package as follows:
| Utility: | Insufficient | 
|---|
| Consistency: | Sufficient | 
|---|
| Examples: | Not sure | 
|---|
|  | 
  Kyle Shenk - 2008-10-31 16:39:11// Checking whether the line is a valid statementif(preg_match("/(.*);/", $sql_line))
 
 ^ that is not checking to see whether the line is valid or not. That's simply saying any character, 0 or more times ending in a semi colon. I really don't know why this is even on here.
  Timo Witte - 2010-02-10 15:46:19 - In reply to message 1 from Kyle Shenkthis is just waste of CPU *g*
  Timo Witte - 2010-02-10 15:55:00 - In reply to message 2 from Timo Witteactually "INSERT INTO bla SET blubb = 'hey i love ; semicolons'" would also turn out as true which is not correct i think. should be a $ in the end as "end of line" |