你好我在django中使用Visual Studio 2013做了一个web应用程序,比如ide,代码管理的团队基础和数据库的postgres,我已经在python 2.7 64bits中安装了我需要的所有要求......
我有这个代码,由于某些原因不能运行for中的内容,一切都是正确的,因为我在postgres中尝试查询并向我显示数据,每次我在postgres中执行新功能时都会发生这种情况但是就像魔法突然随机开始工作一样,我不知道这个问题的原因...如果有人有这个问题的经验会很好,告诉我为什么会发生
call_proccess_students="SELECT * FROM process_monitoreo_doc_det(19,"+paramdep+","+parammun+","+paramesc+",'"+paramturn+"','"+paramdate+"')"
cursor.execute("BEGIN")
cursor.execute(call_proccess_students)
for row in cursor.fetchall():
matches_students.append(dict(label=row[0],rulesetvalue=row[1]))
ausen_students = dict(students=matches_students)
cursor.execute("COMMIT")
cursor.close()
results.update(ausen_students)
return build_json_response(results)