Posts by TGO • 343 points
17 posts
-
1
votes0
answers30
viewsQ: How to handle XML content using Spring MVC?
I need to query data in xml format using SOAP and write this data to the oracle database, how can I do this using Spring MVC?
-
0
votes2
answers1404
viewsQ: How to give permissions to user groups in Postgresql?
*All registered users who are members of the "ACCESS SITE" will have the same permissions. I created a group of users (Group Roles) in Postgresql called "SITE ACCESS" to put all users (Login Roles)…
-
2
votes1
answer3030
viewsQ: What is the difference between serial and integer data types in Postgresql?
I am creating a database in Postgresql and hit the doubt as I can create in the table the field ID with AUTO_INCREMENT, searching the internet I found some examples with the field ID with SERIAL…
-
0
votes0
answers161
views -
4
votes1
answer1542
viewsQ: How to connect a script made in PHP LDAP with Windows AD using SSL connection?
I have the code in PHP LDAP to change password in Active Directory: <?php $usuario="xxx"; $senha_atual="0000"; $senha_nova="11111"; $pessoas="casa.cafe.br"; $servidor="1.1.1.1"; $porta=389;…
-
1
votes0
answers477
views -
1
votes1
answer167
viewsQ: How to use 2 or multiple connections in Cakephp 3.x?
I’m making a system where it takes information from 2 different databases, how can I take the data and differentiate it into the controller and view of Cakephp 3.x? Thanks for the help.
-
0
votes1
answer363
viewsQ: Cakephp 3 - How to sum column values amount of multiple rows and display the result in the view?
I have the Table Entradaestoques id - Prod - Qtd 1 - soap - 10 2 - cloth - 7 3 - soap - 20 4 - disinfectant - 4 5 - soap - 20 6 - cloth - 3 I want to show in the View Soap: 50 units Cloth: 10 pieces…
-
1
votes1
answer84
viewsQ: How to upload a video to a screen?
I’m making an application in Android Studio where I have the main screen (Mainactivity) that has a menu with several links and one of them calls a Fragment(Videofragment) where when loaded should…
-
0
votes1
answer6390
viewsQ: How to make a login and password screen
I’m making my first application and would like to know how I can make the login screen so that the user only access a certain area if you have an email and password registered previously.
-
0
votes1
answer67
viewsQ: How to name the app version in Google Play Developer Console to put into production?
I uploaded my first application 1.0 in the alpha test area and then updated and uploaded to alpha test with version code 2.0 is it right to use 2.0 or it would be better to use 1.1?
-
2
votes1
answer4636
viewsQ: What does alpha testing, beta testing and production mean in Google Play Developer Console?
I’m making my first app and when I was uploading to Google Play Developer Console I was in doubt in which area I upload because it appears 3 options: Alpha Test, Beta Test and Production.
-
0
votes1
answer154
viewsQ: Jquery does not work after using Function . remove();
Good morning, I am making a form with tabs where the user can add and delete the tabs when needed, for the user to delete the tab use the function . remove() from jquery and the next tab is in place…
-
1
votes1
answer235
viewsQ: Androidmanifest error on android:Theme
I’m starting in android development, I do the steps to create an app and test but always at the end of any project is an error message on android:Heme, I will post below the screen hope someone can…
-
1
votes3
answers2710
viewsQ: How do I create a view in mysql by taking data from 4 or more different tables?
How can I create a view and show the data as below:…
-
4
votes5
answers6102
viewsQ: How to create a view in mysql by taking data from 3 tables and repeating the different columns in the result?
I have the tables: +----------Tabela-1--------+ id | nome | cnpj | qtd1 1 | carlos | 0563233 | 4 +--------------------------+ +----------Tabela-2--------+ id | nome | cnpj | qtd2 1 | carlos |…
-
4
votes1
answer281
viewsQ: How to make a Slug pagination in Cakephp?
Cakephp by default generates a pagination with indexes, for example: noticias/listar/page:2 I would like to make a pagination in this way: notícias/listar/2…