Posts by Kleiton Batista • 167 points
22 posts
-
1
votes1
answer212
viewsQ: Datasource configuration
I am with a java application running on wildFly 8 and using Sql Server, the problem I am going through at the moment is that comes a moment the application returns me saying that I could not open…
-
1
votes1
answer66
viewsQ: Data is not entered in sqlite
Guys I’m starting now on Android, I went to do a test of entering data in the database but the data are not entered, I may be mistaken at some point, follows below the code: protected void…
-
0
votes1
answer284
viewsQ: Clarification of MVC archiving in PHP
Good afternoon guys, I’m starting with php OO and MVC, I wonder if the portion of code below escapes the standards, and if there is any improvement to be implemented. From now on I thank all those…
-
1
votes0
answers59
viewsQ: Correctly implement mvc in php
Guys I’m starting now in php, I’ve touched a lot in java before but with php I’m having some doubts This is my form. <form name="sentMessage" action="controller"> <div class="row">…
-
1
votes0
answers87
viewsQ: Multi-threaded chat
Guys I’m developing a chat bot, the question with the answer that the bot gives is all right, my problem is when more than one person comes in contact with the chat, he is treating as if both are…
-
2
votes1
answer6457
viewsQ: Class not found Laravel
Good afternoon, I’m starting with my studies in Laravel, the moment I entered the Eloquent ORM I started having problems. This is my controller <?php namespace App\Http\Controllers; use…
-
0
votes2
answers114
viewsQ: Tableview does not update
I am with a tableview with several times, so the user could confirm that consumed the medicine at one of the times in question, until then it is okay, only that I needed to update the tableview…
-
0
votes2
answers2979
viewsQ: Scroll to the bottom of the page automatically
I’m developing an application where the user asks a question and the server delivers an answer, I’m having trouble getting the scrollbar to keep up with the conversation, So far I’m having the…
-
0
votes1
answer185
viewsQ: How to Do Automatic Scrolling
I’m developing an application where the user asks a question and the server delivers an answer, I’m having trouble getting the scrollbar to keep up with the conversation, So far I’m having the…
-
0
votes1
answer24
viewsQ: How to place a title under the iten button bar
I wanted to know how to put a title under the icon on Toolbar, I tried in some ways but without success. I have tried via code and in the icon properties in the right side menu.
-
1
votes1
answer162
viewsQ: How to redirect to a Viewcontroller
for conflict issues between two frameworks, I had to pass the login code from facebook to a helper class, however I’m not sure how to redirect the user to the main screen of the app after the login…
-
0
votes1
answer543
viewsQ: Date picking time from another time zone
I have a big problem, I need to store the date and time selected by the user in order to generate the notifications at the right time. The date and time is captured by a Picker date and when caught…
-
0
votes0
answers184
viewsQ: After formatting the date appears with 3 hours more
earlier I had trouble transforming a String in date, with a lot of cost I managed to put in the exact time, but now when I went to generate the notification the blessed date appears with a few hours…
-
0
votes1
answer71
viewsQ: Error post in Swift with still
But I once came to you for help. I’m developing a Swift application using web service written in java hosted on Amazon AWS. When I try to register via post the registration is not carried out. The…
-
0
votes1
answer45
viewsQ: Problem with Hibernate at the time of lodging
I have a webservice that works perfectly on my machine, I use mysql and Hibernate. I’m getting a lot to do hosting on Integrator.com.br, gives DNS problems etc. The main problem is, when running the…
-
1
votes2
answers1470
viewsQ: How to search using jpa with searching for foreign key
I am trying to perform a search with jpa, I am with the following query: String jpql = "Select m from Medicamento m where m.usuario_id = ?1"; but this error occurs: Exception in thread "main"…
-
1
votes3
answers964
viewsQ: How to change the title of the "back" button of the navigation bar
I would like to change the title of the back button of the navigation bar, change from " I tried this way but I did not succeed self.navigationController?.navigationItem.backBarButtonItem?.title =…
-
2
votes1
answer464
viewsQ: How to change the color of the Ios navbar
I am developing an application, I would like the navigation bar to have the same color as the body of the project, I am trying with the following code UINavigationBar.appearance().barTintColor =…
-
0
votes3
answers1761
viewsQ: How to convert a String to Date on Swift
i receive the date as follows 2016-08-14T20:38:27.031-03:00 as string, I would like to pass to date on the standard dd/MM/yyyy, I have already searched the net some solutions however were not useful…
-
0
votes1
answer50
viewsQ: How to insert only some of the attributes
I am using JPA with eclipse link, wanted to insert only some data into the database, some of the attributes are not necessary to save, as I could do this?
-
2
votes1
answer82
viewsQ: Upload image to webservice
I am using the alamofire to post pro server, I wanted to know how to send an object that has an img inside it. I saw the following excerpt to upload the image let fileURL =…
-
1
votes1
answer690
viewsQ: Post request on webservice with Swift
I’m starting now to use the still, I managed to make requests . get but stopped in post request. I created a user class that has name, email and password, however I can’t post a user object let…