I am trying to update several records when I hit the save button in the admin with a raw sql which is located in models.py (def save(self, *args, **kwargs)
Following this SO question, I\'m trying to \"truncate\" all tables related to a certain django application using the 开发者_开发问答following raw sql commands in python:
I want to execute one update raw sql like below: update table set f1=? where f2=? and f3=? This SQL will be executed by ActiveRecord::Base.connection.execute, but I don\'t know how to pass the dyna
I need to read and write some data through named pipes. I have tested it in a simpl开发者_如何转开发e Ruby app, and it works nice.