Posts by Afonso Rodrigues • 63 points
7 posts
-
0
votes0
answers48
viewsQ: Generate web pages using Flask or Django from the tables
I have a schema in a Mysql database. I want to generate the web pages from the tables of this schema. Is there any generator of this in python? A few years ago I was generating a "system" like this…
-
0
votes1
answer335
viewsQ: Reverse engineering does not update new Oracle Data Modeler objects
I have a problem with Data Modeler. Etou using Oracle Data Modeler. I did reverse engineering to generate physical model. When I made the modifications in the database and wanted to update the…
oracleasked Afonso Rodrigues 63 -
2
votes1
answer177
viewsQ: Error while deploying to Openshift using my git
Hello. I’m having a very strange problem with my application in openshift. I created in Openshift a Jboss application and added Jenkins. From there I changed the source code source to my git…
-
1
votes1
answer1350
viewsA: Error executing bcp command inside a precedent
I found the problem. When I search the select of the table I will run, on it I formatted the query. that is, there were some n in command, causing him not to be executed. That’s why he introduced me…
-
2
votes1
answer1350
viewsQ: Error executing bcp command inside a precedent
When I execute the command: DECLARE @cmd varchar(1000); SET @cmd = 'bcp "select [colunas] FROM [usuario].dbo.[tabela] " queryout "\\***\SQLServer\text.txt" -c -UTF8 -T -S***'; EXEC xp_cmdshell @cmd;…
-
1
votes1
answer123
viewsA: "Interpret 8-bit bytestrings" error in Sqlalchemy
To work with Unicode use: #-*- coding: utf-8 -*- from __ future__ import absolute_import, unicode_literals
-
0
votes1
answer123
viewsQ: "Interpret 8-bit bytestrings" error in Sqlalchemy
I’m starting with Sqlalchemy and came across this mistake: sqlalchemy.exc.ProgrammingError: (ProgrammingError) You must not use 8-bit bytes trings unless you use a text_factory that can interpret…