Posts by Willyan Caetano • 149 points
6 posts
-
2
votes2
answers1334
viewsA: SQL decimal field size
This divided size means the entire and fractional portion. It is an indicated way to record monetary records. Then the value would be stored in the database like this: COST 57.9870 About validating…
-
-1
votes4
answers254
viewsA: Set Golang Standard Timezone
You can create a separate package by setting this configuration and importing it in the places you need, for example: package tzinit import ( "os" ) func init() { os.Setenv("TZ",…
-
0
votes1
answer82
viewsA: issue when connecting mysql to java using jdbc
Looking at the statement below there seems to be an error that may be causing the problem in question: Class.forName("com.mysql.jdbc.driver"); Driver name to be loaded is: com.mysql.jdbc.Driver…
-
0
votes1
answer45
viewsA: Parallel Computing - Communication between threads
Usually when systems communicate this procedure, it is done in separate execution segments, that is, both the process of establishing communication and the methods themselves of exchanging messages…
-
9
votes1
answer358
viewsA: What is a Backlog?
What is Backlog regarding Scrum? Backlog is a list of what has to be done. I’m referring to the definition without relating to Scrum. What is Product Backlog? Product Backlog is a list of items to…
-
1
votes3
answers405
viewsA: How to import all Static variables from another class?
To access all static variables existing in B you must write the following import: import static B.*; Thus, class A will have access to all members declared as static that A can see. Members means…