Posts by criscan • 75 points
7 posts
-
-1
votes3
answers464
viewsA: adb error: The Connection to adb is down, and a Severe error has occurred
1 - Via command, access your android folder on the path that contains adb.exe: c: you_path android-sdk-windows Platform-tools\ 2-Enter this command: adb Kill-server && adb start-server 3-…
-
2
votes2
answers426
viewsA: Load a large volume of data into a datatable
Following is an example of the code to implement Lazydatamodel: Mymb.java List<NameClass> listResult = new LazyDataModel<NameClass>() { private static final long serialVersionUID = 1L;…
-
1
votes2
answers435
viewsA: Problems sending email with Javamail
I went through this problem, followed the next steps and it worked. 1- Follow the website steps: https://support.google.com/a/answer/176600?hl=en-PT or check if the properties are equal to the…
-
1
votes1
answer2583
viewsA: Access denied for user 'root'@'localhost '- Application connects via command but not in Wildfly 10
Solved! I performed the following procedures: Run the commands in mysql: UPDATE mysql.user SET plugin = 'auth_socket' WHERE User = 'root'; UPDATE mysql.user SET host = '%' WHERE User = 'root'; Open…
-
2
votes1
answer2583
viewsQ: Access denied for user 'root'@'localhost '- Application connects via command but not in Wildfly 10
Settings: Wildfly server 10.1.0 Mysql 14.14 Mysql-Connector- 8.0.15 Hibernate 5.2 Permissions granted to the user: GRANT ALL PRIVILEGES ON bd_billings.* to root@localhost;FLUSH PRIVILEGES; ALTER…
-
0
votes2
answers1863
viewsA: Android - How to export the database in a csv file?
Below the solution I implemented. 1- Include opencsv.jar in the project 2- private boolean criaCsv(String select, long parametro, String nomeArquivoCsv) throws Exception { try{ File arquivoCsv = new…
-
0
votes1
answer1375
views