Commit 97aef524 authored by Derek DeMoro's avatar Derek DeMoro Committed by derek

Fix oracle sql bug.

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@2692 b35dd754-fafc-0310-a699-88a17e54d16e
parent cb30205b
......@@ -779,7 +779,7 @@ public class DbConnectionManager {
// "REM" is Oracle
// "/*" is SQLServer
if (line.startsWith("//") || line.startsWith("--") || line.startsWith("#") ||
line.startsWith("REM") || line.startsWith("/*"))
line.startsWith("REM") || line.startsWith("/*") || line.startsWith("*"))
{
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment