Posts by Francisco Godienski Hansen • 91 points
4 posts
-
2
votes1
answer34
viewsA: Magic Cast - Convert String to Various Object Types
Using Reflection, you can try instantiating a java.lang.reflect.Constructor, passing by String.class as parameter for it. HOWEVER, the object you want to instantiate must have a constructor that…
javaanswered Francisco Godienski Hansen 91 -
0
votes2
answers1258
viewsA: Connection between Mysql and Firedac closes the application when enabled
To fix Firedac connection problem with Mysql, just save the files on the station libmysql.dll and libmysqld.dll, or inside the folder with the application executable or inside the system’s System32…
-
0
votes2
answers1258
viewsQ: Connection between Mysql and Firedac closes the application when enabled
I have developed an application that uses Firedac to connect to Mysql. But when I try to open it on a station, at the time when the Connected := True, the application is closed, without returning…
-
4
votes2
answers140
viewsA: Problem inserting data into a vector
Dude, why don’t you try using java.util’s Arraylist? Easier to insert and process Array data. import java.util.ArrayList; import java.util.List; public class Edificio{ private List<Porta>…