Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I have an issue with inserting info to my db. It doesn't give off an error.The code is here.

import MySQLdb as m

def Room(room):
   db = m.connect("localhost","root","password","rooms")
   cur = db.cursor()
   cur.execute('INSERT INTO rooms (name) VALUES("%s");'% (room))
def getRoomDb():
   db = m.connect("localhost","root","password","rooms")
   cur = db.cursor()
   cur.execute("SELECT * FROM rooms;")
   result = cur.fetchall()
   return result

print getRoomDb()

after i run the Room("roomname") it outputs like it should but nothing actually gets put into the db

share|improve this question
2  
How about commit() your data? – esaelPsnoroMoN Jan 21 at 18:39
how would i use that I'm new to mysql and python – michael Jan 21 at 18:41
you're not calling the Room() function either... – Marc B Jan 21 at 18:42
I do just I eval it on bot – michael Jan 21 at 18:45
if i run the Room() as print Room("roomname") it outputs none – michael Jan 21 at 18:47
show 1 more comment

1 Answer

You didn't call commit() for the transaction in which you executed the INSERT.

In Python, the default action is to roll back work, unless you explicitly commit.

See also:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.