Posts by lucioam • 259 points
5 posts
-
4
votes7
answers180098
viewsA: Format decimal places directly in the SQL command in Firebird
I did the select using: CAST(CAST(a.CAMPO AS DECIMAL(18,6)) AS VARCHAR(30)) Worked perfectly.
-
1
votes1
answer450
viewsQ: Call Java class (.JAR) using C++ (.EXE)?
I have a Java application (SYSTEM.JAR) with the system input class ... Ok? To make it more transparent to the end user, I would like to create a compiled . EXE in C++ that just calls the Java class.…
-
3
votes1
answer716
viewsQ: How to communicate between classes?
I’m starting at Javafx and I’m having doubts. The main class creates an Hbox with a button. This button has the action of creating a TableView in the Center of bdPrincipal. Only they are in…
-
1
votes2
answers1066
viewsQ: How to change the URL that consumes a Webservice?
I have a Webservice written in C# and the client application (data collectors). Collectors consume Webservice to view information in the main comic. On every client I install my Webservice (Data…
-
13
votes7
answers180098
viewsQ: Format decimal places directly in the SQL command in Firebird
I have a table ESTOQUE containing a field called QTDE, this field has 3 decimal places. What would be the command to return directly from SQL formatted with 3 houses? Because the integer values are…