Posts by Cristiano Pires • 119 points
4 posts
-
3
votes1
answer111
viewsA: Mysql Stored Procedure Error
I solved the problem. This line: @delete_ligacoes: loop cannot have the arroba@ 'in the loop. I removed the arroba and worked perfectly. Thank you!
-
0
votes1
answer111
viewsQ: Mysql Stored Procedure Error
I have a table of links that I need to delete every month to include new data. I made a stored process to automate this process. This table has about 3 million rows in a monthly period. This can…
-
4
votes3
answers8766
viewsQ: Read a few lines from a file
I have a file with about 3 million lines. I have to read line by line and process some modifications, and after these modifications in line store the result in a list to then write to another file.…
pythonasked Cristiano Pires 119 -
4
votes1
answer3300
viewsQ: Static variable in Python
I came from Java. I have a variable in a class that I need to change in more than one method. I tried to put it global, but it consumes a lot of resource. How to implement this? It would be the same…