Recent content by Hobby

  1. H

    How to Insert String to LVARCHAR

    Hi, I have the following stored procedure CREATE PROCEDURE SEARCH_CRUISE_DEBUG33( ) RESULT ( CruiseId VARCHAR(10000) ) BEGIN String resultString = null ; // Businees logic to populate resultString. SQLResultSet.set(1, resultString); SQLResultSet.insert(); END The length of...
  2. H

    Help Needed on Setting Isolation Level.

    Hi , I am new on Java Stored Procedure. Our application is a java based application connecting to progress DB. Below is a sample of stored procedure we write. I want to set isolation level to Read Uncommitted. With out that, its creating share locks. Can any one tell me how to set isolation...
  3. H

    Help Needed reguarding appserver log

    Dear RealHeavyDude, Thank you for your replay. Please note that, 4GLTrace value was not present in both of my DEV and Client Environments. We had tried with this parameter in client envi , but it created trace for each and every internal programs getting called. But in our DEV environment...
  4. H

    Help Needed reguarding appserver log

    HI, I am a junior progress resource. In our development environment, in appserver log , we are getting entries like AS AS Server Message state = MSGSTATE_INITRQ AS AS Server Message state = MSGSTATE_RECVLAST requestID= <REQ|2391c70de6acfedc:-4a57888b:13776dacd49:-7ff8-001267> AS AS -- TRACE...
  5. H

    Help needed on COM-Handle.

    Can anyone please provide me link to any document on tutorial of using com-handle for Excel.
  6. H

    Help need on colun "::"

    one doubt.. following is a small piece of code i found somewhere DEFINE INPUT PARAMETER DATASET-HANDLE hdsQuery . hdsQuery::tt-as-querydef:find-first(). if hBuffer::myFiled is the shortcut of hbuffer:BUFFER-FIELD ( 'myField' ):BUFFER-VALUE then...
  7. H

    Help need on colun "::"

    Thanks RealHeavyDude. Your are a great help as always.
  8. H

    Help need on colun "::"

    Help need on colon "::" Hai, Can you help me whats the meaning of using :: Can you please tell any pdf or something where i can get more information on it. I have seen in some places its used like Prodataset-handle::buffer-handle.
  9. H

    help need to find number of records on a query.

    Hai, I need to find the number of records in a buffer which satisfies a given where condition. for example : i have a query h_query:query-prepare("for each compinv"). i need to find the number of records.. There is a function called h_query:num-results.but this needs the query to be opened...
  10. H

    Help needed on query

    Hai, I got a temp-table t-t1 and t-t2. both having similar signature. now t-t1 has one record and t-t2 has another record. i want to write a for each statement such that it will fetch record from t-t1 and then from t-t2. Is this possible to do without copying data from both to one temp-table.?
  11. H

    Help needed on Index

    Hai, Is there anyway to get the primary unique key of a buffer from its handle. there is a statement like hbuff:index-information(i). but that gives information of all the indexes for different values of i. but that is a over load as i have to loop through it. is there any easier way? it...
  12. H

    Help needed on identify passed by Reference or not

    Thanks KrisM. It worked
  13. H

    Help needed on identify passed by Reference or not

    Thanks RealHeavyDude for your advice. I will try using the NO-error statement. I got one more doubt. This is reguarding the set-call-back procedure "before-row-fill". Is it possible by anymeans to prevent the fill of current row and go to the next row buy some coding in the before-row-fill...
  14. H

    Help needed on identify passed by Reference or not

    Hai RealHeavyDude, The reason why i want to know whether it is passed as by-reference or not is to delete that object in the called procedure. if it is passed by-reference then the statement delete object h-data will fail.so what i am intenditing to do is an if check before delete object.
  15. H

    Help needed on identify passed by Reference or not

    hai, Is there anyway to identify whether a temp-table or dataset is passed as by-reference to the called procedure, from the called procedure... For example... run test.p(input dataset d-data by-reference). /* prodecure test.p) */ input parameter dataset-handle h-data). i want to know...
Top