Posts by Stribus • 359 points
7 posts
-
1
votes1
answer1716
viewsA: How to separate text words from a comma column?
Unfortunately Firebird does not have a command for this requiring the creation of a Storeprocedure to do this it is necessary to create a strore Procedure and use it in sql. Example: set term ^ ;…
-
4
votes1
answer1716
viewsQ: How to separate text words from a comma column?
There is a ready function in Firebird 2.5 that is the inverse of the list function? When you make a select list(campo,',') from tabela is returned all field values in a single line separated by…
-
10
votes2
answers19752
viewsQ: Ascending and decreasing ordination in the Clientdataset
I have to order the clientdataset 3 fields at the same time: 1 - Assets(0 or 1) 2 - date(dd/mm/yyyy) 3 - name The problem is that I need to make different ordinations for each of them, the first…
-
4
votes2
answers5558
viewsQ: Is there any way to disable Delphi’s "Debugger Exception Notification"?
I would like to disable the function from which Debugger notifies me of an Exception in a code snippet. Example: try Text := CurrToStrF('Erro', ffNumber, 2); except Text := '0,00'; end; During the…
-
1
votes4
answers7006
viewsA: Doubt with Regex with new line
the expression that satisfies the condition was thus <strike>(.|\n)*?</strike> could also use the expression I quoted earlier : <strike>.*?</strike> and mark in search mode…
-
8
votes4
answers7006
viewsQ: Doubt with Regex with new line
I created the following expression: "<strike>.*?</strike>" to get all the text taxed, but due to the source code having line break (as in ex. below) is not working. <p…
-
7
votes6
answers14692
viewsQ: How to create a Git server on the internal network?
You can create a Git local server? I would not like to be dependent on the internet.