OPENJPA-606 More changes to Informix specific properties in the InformixDictionary

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@659317 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Catalina Wei 2008-05-22 23:55:49 +00:00
parent dcada13237
commit 81fc3ab605
1 changed files with 4 additions and 0 deletions

View File

@ -145,6 +145,10 @@ public class InformixDictionary
nextSequenceQuery = "SELECT {0}.NEXTVAL FROM SYSTABLES WHERE TABID=1";
supportsCorrelatedSubselect = false;
swapSchemaAndCatalog = false;
// Informix does not support foreign key delete action NULL or DEFAULT
supportsNullDeleteAction = false;
supportsDefaultDeleteAction = false;
}
public void connectedConfiguration(Connection conn)