Added various methods for settings to DbSystem class in C#. Also changed Languages enum to be a uint instead of an int. Also added compareStrings method to DbSystem class. Also added unit tests for settings and compare strings.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@911 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
dsandersoremutah
2006-09-26 17:39:38 +00:00
parent 74a4222187
commit cb3c761e2a
9 changed files with 1367 additions and 7 deletions

View File

@@ -3252,7 +3252,7 @@ JNIEXPORT jstring JNICALL Java_xflaim_DbSystem__1getTempDir(
char szPath [F_PATH_MAX_SIZE];
jstring jPath = NULL;
if (RC_BAD( rc = THIS_DBSYS()->setTempDir( szPath)))
if (RC_BAD( rc = THIS_DBSYS()->getTempDir( szPath)))
{
ThrowError( rc, pEnv);
goto Exit;