Posts by Carlos Baraúna • 51 points
5 posts
-
0
votes0
answers50
viewsQ: Call a PL/SQL precedent by passing a date as parameter
I have a PL/SQL design ( LnCDOrigem IN Company.COD_CD%TYPE, LnSotoreOrigem IN Company.COD_STORE%TYPE, LvTipoEqpt IN VARCHAR2, LdDtMovimento IN DATE, LnRetorno OUT NUMBER) When I make her call…
-
0
votes1
answer278
viewsQ: How to receive a Json in a Clob Java + Spring boot Field
Good morning I have an ethic that one of the fields is a Clob that stores a Json @NotNull @Column(name = "SEQUENCE_PROPOSAL_UID", length = 3) private Long sequenceProposalUid; @NotNull @JsonProperty…
-
1
votes2
answers1319
viewsA: Just take a commit from a github project?
Check out only from commit_sha Git repositories have this pattern https://github.com/<repo_name>/tree/<commit_sha> Try to use these commands should work git clone -n <repo_name>…
-
1
votes0
answers14
viewsQ: set main page with data from a popup
Good morning. I could use some help solving a problem. I have an A page where I have the order information I’m about to make. On page a you have a field that is the supplier but I opened a popup B.…
popupasked Carlos Baraúna 51 -
3
votes1
answer572
viewsQ: Convert String to Calendar
I’m trying to make a conversion of String for Calendar but without success. My String is in dd/MM/yyyy format. I need to convert to yyyy-MM-dd And set on an object of type Calendar. void…