Search results

  1. Marian EDU

    .Net to Progress Convertion

    Re: .Net to Progress Conversion and we should start bidding on this or we can just go ahead and do it? :)
  2. Marian EDU

    issue in webspeed

    there's your issue... a 'cookie' should be set in the header section, this means before any other output content is being sent. you might think that you can just change the order and put set-cookie before the {&out} line but that won't change anything since you're using a 'html' object that have...
  3. Marian EDU

    Sorry, operation not implemented yet (7484)

    you might try something like this, don't have an V9 at hand but I guess select from select should work... in V10 it does work, so you might consider the update path if needed. select p2.prh_site, p2.prh_part, p2.prh_rcp_date, sum(p2.prh_rcvd) from (select p1.prh_site, p1.prh_part...
  4. Marian EDU

    Like Operator error..

    as a side note... did you ever wonder what if the user doesn't put in that text box what do you expect it will put? Dim MyCommand As System.Data.Odbc.OdbcDataAdapter = New System.Data.Odbc.OdbcDataAdapter("SELECT arh.name FROM PUB.arh where name LIKE ='" & TextBox1.Text & "' ", MyConnection)...
  5. Marian EDU

    Update Progress

    true, 10713 status code means a reserved key was used and need to be quoted... not sure which one that would be (ar, abal, anum) but just to be sure (and safe from future additions in later versions) go ahead and quote every table/field names ("ar"."abal", "ar"."anum"). on the other hand the...
  6. Marian EDU

    Output to Socket

    Yeah, one would definitively expect to have sockets as an regular input/output stream in a 4GL... while there is more control when using sockets the 3GL way having socket streams added in 4GL would ease some pain but I will not hold my breath on having them added soon :) About the only solution...
  7. Marian EDU

    Okapi new release - database definition support

    For those lazy programmers out-there that might have some time to kill in a cold winter Sunday a new release of Okapi is available for download, if interested use the Eclipse update-site as usual: http://www.ganimede.ro/mda/okapi/update What’s new and worthy: the reverse engineering module now...
  8. Marian EDU

    Linux batch file to call SQL

    that might be simple because of the 'progress who' syndrome :)
  9. Marian EDU

    Linux batch file to call SQL

    Not sure why do you really have to run SQL commands like that as Version One DBForms claims it can connect and fetch data from 'any databases on the network'... now, they do want contact information even for downloading a stupid product brochure and I'm not really in the mood for that but I...
  10. Marian EDU

    Why an OpenEdge Architect for Linux doesn't exist?

    Nice, didn't thought of this STD analogy... you should pay attention, looks like Mike is going to pay you a visit soon :) Joke let aside, even for graphical environment maybe there could be an option to have a VD (sic) for GTK, maybe using Mono's bridge if they are so fun of .Net framework...
  11. Marian EDU

    Database ALIAS trouble.

    you need to change the alias in a separate program, changes of the alias does not apply in the same compilation unit :( DO i = 1 TO 3: ASSIGN db = LDBNAME(i). IF db = ? THEN LEAVE. CREATE ALIAS DICTDB FOR DATABASE VALUE(db). /* Scan all locks for this DB */ RUN logit(INPUT...
  12. Marian EDU

    Why an OpenEdge Architect for Linux doesn't exist?

    That looks like a valid observation and they did promised there will be a (limited) version of OEA available for Linux in OE11, just before the launch they changed their mind or couldn't make it so there isn't one in OE11. No clue if there will ever be one or the idea was simply dropped. The...
  13. Marian EDU

    Does Progress support any in-memory caching framework ?

    Sorry, no sample code available... the memcached protocol is not that complicated, you can use plain telnet to send commands to the memcached server so with a little bit of socket programming experience you can get that working. You can start by looking-up socket, connect, write, read...
  14. Marian EDU

    Can I call a Java class function from Progress ?

    no, it just means you can't connect to the memcached server (see the enum below, 3 means MEMCACHED_CONNECTION_FAILURE). you do have the server started on localhost (default port is 11211) do you? :) try to connect to it using telnet and see if you get to connect... telnet localhost 11211...
  15. Marian EDU

    Can I call a Java class function from Progress ?

    well, didn't had the time to look into get function yesterday... left as an exercise for the reader ;) however, looking again at it this morning saw the obvious thing that I've forgot to specify persistent which probably was the cause of GPF when trying to free the memcached structure at the...
  16. Marian EDU

    Can I call a Java class function from Progress ?

    I've only found a 32 bits binary for an older version of libmemcached (libmemcached.so.6) which doesn't have the memcached entry point you seems to be using in libmemcached.so.8. Not sure if the fact that I'm using the 32bits library on a 64bits machine with Ubuntu 64 could be the cause of my...
  17. Marian EDU

    Can I call a Java class function from Progress ?

    without seeing the procedure external declarations for memcached and memcached_set it's kinda hard to tell why do you get that error... v-han looks like being a memptr variable (as you use set-size on it), while I do expect the memcached procedure to have a return parameter of type 'long' - the...
  18. Marian EDU

    Does Progress support any in-memory caching framework ?

    well, the 'in-memory cache' is something that normally gets added in between the language and the database while the 'embedded' nature of Progress 4GL (ABL) somehow lifts the need to have that cache layer in the middle as the database is most of the time already connected (run-time connections...
  19. Marian EDU

    Communicating with .Net

    don't worry, it can... in some service pack of 10.2B they lifted the restrictions to use only 'visual objects', in V11 it's officially supported even for character mode (well in windows) therefore available even in webspeed/appsrv environment.
  20. Marian EDU

    Tool to draw db-charts?

    Just added DF parsing functionality to Okapi, this will load the database in an UML model that can easily be visualized using either an open-source editor or import it to another commercial UML tool as it's pure XMI. I'm going to do some changes to use stereotypes to handle all the...
Back
Top