Posts by Renan Bicudo Ferrari • 21 points
6 posts
-
0
votes0
answers45
viewsQ: justifyContent: 'flex-end' does not align at the base
I am trying to add a product value bar at the bottom of the application, using the justifyContent: 'flex-end' but the content does not go down, it is pasted in the View that comes above. The code is…
-
0
votes2
answers146
viewsQ: Assignment of value to variable
I have two global variables, which we’ll call To and B, when I make the following assignment: A:= 5; B:= A; Every time I change the value of To, the value of B also changes. If I do A:= 10 B becomes…
-
0
votes1
answer581
viewsQ: Is it possible to obtain the SIM number in firemonkey(Delphi)?
Is it possible to get the mobile number (SIM number) in the Firemonkey App? I’ve been searching on forums for a few hours and have not found any example the library that allows you to get the mobile…
-
0
votes1
answer265
viewsQ: How to access mysql base from an external network
I have an application, on Android with Mysql database, that works perfectly within a specific network. But when trying to access this same base on an external network I get the following message:…
-
0
votes0
answers66
viewsQ: mysql error while trying to insert a timestamp
I’m trying to pass a timestamp per parameter for a Function, but I end up getting an error ERROR: invalid input syntax for type time: "10" the stretch where I pass is: select agendar('2010-01-01…
-
0
votes1
answer577
viewsQ: postgres compare time extracted from a timestamp
I need to extract the hours and minutes of a timestamp in mysql, I tried to use maketime(); CREATE OR REPLACE FUNCTION agendar(dia timestamp) returns bool as $$ declare hora time := extract(hour…