When you have the name of a widget-pool, is it possible to get a list of dynamic objects created in this widget-pool ?
When you have a handle to a dynamic object, is it possible to get the name of the widget-pool the object is created in ?
Suppose I want to use GUID's (or UUID's) as primary index for a new database table.
The GENERATE-UUID function returns a raw type value so my database column would be data type raw, if it were not that raw data type cannot be indexed.
I could use base64-encode to convert my GUID to a string but...
Apparently you need at least 3 likes to be able to insert web links into your posts on this forum, even for links to www. progress.com.
What's up with this ?
How do i get these likes ?
I am not familiar with zeroMQ but I think you can find plenty of code samples, just not for Progress.
You can use those samples and convert the syntax to progress syntax.
create socket mySocket.
mySocket:set-read-response-procedure(...).
mySocket:connect(...).
mySocket:write(...)...
You might also use something like this ?
run genericprocedure.p (input buffer customer:handle, input buffer o_customer:handle).
genericprocedure.p:
define input parameter newbuffer as handle no-undo.
define input parameter oldbuffer as handle no-undo.
if...
If you do not specify a sorting sequence then the 'find first' simply returns the first record the progress runtime happens to stumble upon. If this is not to your liking you must specify the sequence that must be used to define 'first'.
FOR FIRST job-bom WHERE
job-bom.company = "01" AND...
Strange, i can consistently reproduce this on different platforms (OE102b and OE11, unix and windows).
Also can you explain, if input is A,B,C (with last line) expected output is A,B,C,C and not A,B,C or A,B,C,<empty line> ?
Suppose you have a simple text file (read.txt) with this contents:
A
B
C
Important is that the last line is not terminated with a CR or LF character.
Then you read this text file with a simple program:
DEFINE VARIABLE filename AS CHARACTER NO-UNDO.
DEFINE VARIABLE filetext AS CHARACTER...
CLOB fields can have their own codepage, independent of cpinternal or database codepage.
Look for documentation on the CLOB-CODEPAGE option for database definitions and the COLUMN-CODEPAGE option for temp-table definitions.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.