Re: [U2] UOJ and value-mark and field-mark

2008-06-18 Thread waivic
1 [EMAIL PROTECTED] uojCounter]$ LANG=en_US.iso885915 java -jar dist/uojCounter.jar UniString: 218 UniDynArray:218 UniString: F136 1 UniDynArray: F136 9 On Mon, 2008-06-09 at 23:05 -0700, waivic wrote: Jeff, I try your suggestion: export LANG=iso885915. It doesn't look like working

Re: [U2] UOJ and value-mark and field-mark

2008-06-11 Thread waivic
]$ LANG=en_US.iso885915 java -jar dist/uojCounter.jar UniString: 218 UniDynArray:218 UniString: F136 1 UniDynArray: F136 9 On Mon, 2008-06-09 at 23:05 -0700, waivic wrote: Jeff, I try your suggestion: export LANG=iso885915. It doesn't look like working neither. It has the same effect

Re: [U2] UOJ and value-mark and field-mark

2008-06-10 Thread waivic
problem with UOJ. It is the same for java apps and servlets. On Mon, 2008-06-02 at 16:17 -0700, waivic wrote: I have a very simple file-TESTS, which only has 4 fields: @ID field, F1, F2 and F3. F1 is a single value field, F2 is a multi-value field and the value is one value-mark

RE: [U2] UOJ and value-mark and field-mark

2008-06-10 Thread waivic
: waivic [mailto:[EMAIL PROTECTED] Sent: Monday, June 02, 2008 4:18 PM To: u2-users@listserver.u2ug.org Subject: [U2] UOJ and value-mark and field-mark I have a very simple file-TESTS, which only has 4 fields: @ID field, F1, F2 and F3. F1 is a single value field, F2 is a multi-value field

[U2] UOJ read function with value-mark and field-mark

2008-06-04 Thread waivic
I post this question couple days ago. No response yet. The question is in UniObject for Java, when I use read() method read a full record from a file, all the value-marks in the returning UniString become the field-marks. I want to keep the original value-marks and field-marks in the output after

[U2] UOJ and value-mark and field-mark

2008-06-02 Thread waivic
I have a very simple file-TESTS, which only has 4 fields: @ID field, F1, F2 and F3. F1 is a single value field, F2 is a multi-value field and the value is one value-mark-separated list, F3 is a single value field. It has the following sample record in the file: Field Name Value @ID

RE: [U2] UniSubroutine question with UOJ

2008-04-24 Thread waivic
This is reponse to Symeon Breen's reply. Yes, CRT does not prevent UniObject to call UniSubrouitne. But you can't see the CRT output unless you convert them into an output paramater like Eric Armstrong suggests here. But my problem is sometimes the Unidata subroutine fires some warning messages,

[U2] UniSubroutine question with UOJ

2008-04-18 Thread waivic
I use the UniSubroutine object of Uinobject For Java to call a subroutine with Unidata. But if I have any CRT or PRINT command inside Unidata Subroutine, it will mess up the UniSubroutine call. Basically, it runs but returns nothing. Anyone know why this happens and how I can prevent this happen?

[U2] Difference between Universe and Unidata

2008-04-11 Thread waivic
This is more like a marking question. I go through the introductions of Universe and Undiata in IBM WebSite. I still have no idea about the difference of these two products execept they are both multivaleue databases. Could anyone give a better explanation about the fundamental difference bewteen

Re: [U2] Difference between Universe and Unidata

2008-04-11 Thread waivic
and Universe. But IBM's website only uses the marketing terminology to describe these two products. That quite confuses me. Could someone give a good explanation about the difference between these two mult-value databases? So I post this question. waivic wrote: This is more like a marking

[U2] Login problem with UOJ to Unidata

2008-03-12 Thread waivic
I am using UOJ to connect to Unidata 7.1. The connection method is connect() of UniSession class. The Java codes live inside JBOSS server. Here is my situation: when I use connect() method to connect to Unidata, if my password is wrong, connect() will keep trying to log on Unidata (since the

[U2] Does UniDynArray of UOJ behave differently in Unix/Linux?

2007-07-23 Thread waivic
We have a Unidata 7.1 runing on a Redhat Linux server. I build a subroutine X.SUB1(XL.INPUTS, X.OUTPUT). XL.INPUTS is a dynamic array list; X.OUTPUT is the output. I need to call X.SUB1 through UniObject for Java, I have the following codes (_uniSession is a UniSession Object): UniSubroutine

Re: [U2] Does UniDynArray of UOJ behave differently in Unix/Linux?

2007-07-23 Thread waivic
I need to set LANG=en_US in order for the codes working in our system. Wai waivic wrote: We have a Unidata 7.1 runing on a Redhat Linux server. I build a subroutine X.SUB1(XL.INPUTS, X.OUTPUT). XL.INPUTS is a dynamic array list; X.OUTPUT is the output. b b When I run the above