Search:

Type: Posts; User: Marco

Page 1 of 80 1 2 3 4

Search: Search took 0.04 seconds; generated 56 minute(s) ago.

  1. Replies
    17
    Views
    633

    Re: How to detect UI or not ?

    There is a global variable for the object count. In reality this is much much higher in ui applications vs business processes.

    Not fail safe obviously, but perhaps useful.
  2. Replies
    17
    Views
    633

    Re: How to detect UI or not ?

    In the debugger, scout the globals there might be something.

    But probably a broadcast get of a property that is only in ui objects is probably your fallback.
  3. Thread: ESQL and GO

    by Marco
    Replies
    11
    Views
    465

    Re: ESQL and GO

    Split by ‘go’ using the strsplit function. Then After the statement handle is created, loop through the array and run each query.
  4. Thread: ESQL and GO

    by Marco
    Replies
    11
    Views
    465

    Re: ESQL and GO

    In our sql handler we split the ‘sql’ string by go and issue as separate statements within the statement handler.
    For example yesterday I had a need where a trigger used a global (database)...
  5. Re: Same as ShowLn (String(variablle) in a WebApp

    We often add procedures
    LogMesage
    LogDebug
    LogError

    In an xml settings file controlled by deployment manager, different environments have different settings for these.

    And with the...
  6. Replies
    17
    Views
    765

    Re: DD utilities in Studio are PAINFULLY slow

    Hi Peter

    I think you are spot-on and my point all along has been, that it should not do that…
  7. Replies
    17
    Views
    765

    Re: DD utilities in Studio are PAINFULLY slow

    It should just check the int files if it needs to update a ‘related to file’ rather than do this by opening every table to query this.
  8. Replies
    17
    Views
    765

    Re: DD utilities in Studio are PAINFULLY slow

    It’s the same problem, it for unknown reasons tries to open every table.
    Basically unworkable and most of the time the studio crashes anyway when more than 500 sql tables
  9. Replies
    11
    Views
    375

    Re: Display on Indexes

    Same icon but 180 degrees turned?
  10. Re: Enabling a web application through the registry requires Restart.

    So in that case, the bug should be fixed.
    There must be a way for a deployment manager (like octopus deploy) to stop and start a webApp.

    It would be a blocker for upgrade for several of our...
  11. Thread: Bulk insert

    by Marco
    Replies
    3
    Views
    282

    Re: Bulk insert

    Hi Mark

    Still do an insert, but do 1000 records per insert.

    Insert into cust (Id, Name, limit)
    Values
    (100, ‘hi’, 10000),
    (101,’doei’, 20000),
    …..
  12. Replies
    17
    Views
    765

    Re: DD utilities in Studio are PAINFULLY slow

    Adding a new table DD causes every table to be opened to find out if they are children.

    No problem when embedded, but sql with remote database and nearly 1000 tables in the filelist, it takes...
  13. Thread: ESQL and ROWLOCK

    by Marco
    Replies
    20
    Views
    848

    Re: ESQL and ROWLOCK

    Okay, what if you never read direct from the table, but copy into a temp table?
  14. Thread: ESQL and ROWLOCK

    by Marco
    Replies
    20
    Views
    848

    Re: ESQL and ROWLOCK

    What about adding a column ‘locked_by’. And have your program logic do a constrain.

    We have a system that uses that for legal files where *all* information need to be static while being...
  15. Replies
    2
    Views
    214

    Re: DF24.0 Locals window quirk with paths

    I wondered too especially every time when I have to remove the \
    Good to know that the copy does not add these.
  16. Re: Using new webapp framework with anonymous site visitors?

    Hi Mike

    Further to this, but you should call your local rep to confirm:

    App license is unlimited users: known or unknown

    Named license is unlimited apps but the users must be known and the...
  17. Re: Enabling a web application through the registry requires Restart.

    Sounds exactly what we need!
    Thanks!!!

    Just one question, at some stage it will be updated to 24.1 etc right?
  18. Replies
    20
    Views
    758

    Re: cWebTimer Placement

    We just use the windows scheduler to just dona http request.
    Some customers every minute, others every 5 or even 30.

    Very simple now curl is part of windows, or via powershell if you prefer.
    ...
  19. Re: DF 19.1 windows application closes now and then without any message

    Sales staff that use Vpn over hotel / coffee shop / public WiFi are a clear exception though…
  20. Re: Has anyone updated the SET class to use native arrays?

    +1

    I don’t often come across code that uses the set class, but I do have a lot that I’m doing native arrays and having to manually make sure there are no doubles. A set based class would take care...
  21. Replies
    69
    Views
    7,723

    Re: ChatGPT by openai and DataFlex

    Looking to the north, UK and US are both on the left, only NZ is on the right.
  22. Drawing control - Usable for for form builder

    Hi Guys

    I've got a customer request for a 'form builder', I was looking at some js libraries and doing it in a browser.
    However it is a windows project, so using the drawing functionalities might...
  23. Replies
    69
    Views
    7,723

    Re: ChatGPT by openai and DataFlex

    Actually, that got me thinking, DAW could use AI generated code for what a novice would expect based on a range of other language domain knowledge.

    It is reasonable to expect in a language where...
  24. Replies
    69
    Views
    7,723

    Re: ChatGPT by openai and DataFlex

    But really there should have been a
    Class cButton is a button
    For ages, so it’s just prepared for the inevitable [emoji23]
  25. Replies
    2
    Views
    268

    Re: Feature Request: Swagger / OpenAPI support

    # For client side:
    Even just a wizard that converts ‘curl sample’ to dataflex client code.

    This would be the same as the wsdl to client code.

    And as most api’s have their samples in curl that...
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4