Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 49 for /trunk/Java/core/Server/src/org/litesoft/db/ConstraintViolationException.java

Diff revisions: vs.
  @@ -1,3 +1,4 @@
1 + // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
1 2 package org.litesoft.db;
2 3
3 4 import java.sql.*;
  @@ -31,7 +32,7 @@
31 32 return pPrefix + (Utils.isNullOrEmpty( pFieldNames ) ? //
32 33 "ValueOrValues" : //
33 34 (pFieldNames.length == 1) ? //
34 - "Value" : //
35 + "Value" : //
35 36 "Values");
36 37 }
37 38 }