Posts by João Gonçalves • 66 points
5 posts
-
0
votes1
answer49
viewsA: Warning when using ibase_fetch_object()
I managed to solve the problem and it was in the most obvious way possible, solving the lack of disk space. To put it in context, the server where the application in question runs still had 20GB of…
-
0
votes1
answer59
viewsA: I need an SQL query to only return one data,
Well, I guess this query should do the trick: SELECT TABELA.* FROM TABELA LEFT JOIN TABELA T2 ON T2.NOME = TABELA.NOME AND T2.LETRA IN ('B', 'C') WHERE TABELA.LETRA = 'A' AND T2.NOME IS NULL I don’t…
-
0
votes1
answer307
viewsA: The timestampsInSnapshots Setting now defaults to true and you no longer need to explicitly set it
Actually, that’s not a mistake, it’s a warning or a warning. It’s not connected to the antivirus. The literal translation would be: @firebase/firestore: Firestore (5.8.1): The configuration…
-
1
votes1
answer78
viewsA: Put radio input disable
You can use a ternary operator by filling a string with the value required by default, but with the value disabled when the fields are the ones you want to disable. $y = 0; while($rows_cursos =…
-
0
votes1
answer49
viewsQ: Warning when using ibase_fetch_object()
I have an app PHP that synchronizes data from one database to another, at a given time, when consulting a database Postgre, after properly completing the variables $db and $sql I have the following…