Posts by Junior Medeiros • 50 points
6 posts
-
0
votes1
answer87
viewsA: Send to API via POST Request in Delphi 10.3
I was able to solve by passing the Paramobj value inside the array. var res: TJSONValue; ParamNome: TRequestParam; ParamProfissao: TRequestParam; ParamArray: array of TRequestParam; ParamObj:…
-
0
votes1
answer87
viewsQ: Send to API via POST Request in Delphi 10.3
Good evening Guys, I’m a beginner in Delphi and I’m trying to send a creation request for an Api but I’m having some difficulty with the POST. How do I send this? I’m trying for this API:…
-
0
votes1
answer42
viewsQ: Why user is created but password does not work?
Good afternoon guys I am building a script to create user and password on linux (Ubuntu 16.04LTS). The problem is that after running my script the user is created but I can’t log in with the…
-
-1
votes1
answer323
viewsQ: Return mysql query in python list
Good Afternoon! How do I take the data that comes back from the sql query and play it in a list knowing that I need to return the query = to return the file folder + the files larger than the…
-
-1
votes1
answer65
viewsA: Access denied there mariadb database on linux python3
"print(mydb)" Here you are trying to print the object so the error tries that way it should work. import mysql.connector (mydb = mysql.connector.connect( host="localhost", database="testes",…
-
0
votes1
answer99
viewsQ: Return of a for in a python list
I would like to use the return of a for that list files from a directory to use in a Mysql command, but I can’t get all the files. thanks in advance for the help! #Lista os arquivos do diretorio…