Posts by Gustavo Primo • 13 points
3 posts
-
0
votes2
answers206
viewsQ: Mysql - auto increment shared between tables
It is possible to share the auto increment value of two tables? Example: Tabela 1 +----+-------+-----------+ | id | campo | criado_em | | 1 | a | 00:00 | | 2 | b | 01:00 | | 5 | c | 04:00 |…
-
-1
votes2
answers260
viewsA: Python string prefix
My XML has an attribute "encoding" and so the error message said that it was not possible to toggle the encoding. Then I made a replace to remove the 'encoding="utf-8"'. And to remove the prefix 'b'…
-
-1
votes2
answers260
viewsQ: Python string prefix
I made a script to download an attachment from an email, this attachment is an XML file, and I want to save it in a database. But when I get the XML body, it comes with the prefix 'b' and therefore…