|
@@ 2832-2833 (lines=2) @@
|
| 2829 |
|
} |
| 2830 |
|
} |
| 2831 |
|
// Duplicate column name... should be okay ;). |
| 2832 |
|
elseif (in_array($mysql_errno, array(1060, 1061, 1068, 1091))) |
| 2833 |
|
return false; |
| 2834 |
|
// Duplicate insert... make sure it's the proper type of query ;). |
| 2835 |
|
elseif (in_array($mysql_errno, array(1054, 1062, 1146)) && $error_query) |
| 2836 |
|
return false; |
|
@@ 2835-2836 (lines=2) @@
|
| 2832 |
|
elseif (in_array($mysql_errno, array(1060, 1061, 1068, 1091))) |
| 2833 |
|
return false; |
| 2834 |
|
// Duplicate insert... make sure it's the proper type of query ;). |
| 2835 |
|
elseif (in_array($mysql_errno, array(1054, 1062, 1146)) && $error_query) |
| 2836 |
|
return false; |
| 2837 |
|
// Creating an index on a non-existent column. |
| 2838 |
|
elseif ($mysql_errno == 1072) |
| 2839 |
|
return false; |