tengo un textctrl y un boton lo que quiero hacer es que al escribir en el textctrl y al presionar el boton se guarde lo que escribi, en sqlite. aqui esta mi codigo
Código Python:
Ver originalimport wx
import sqlite3
class basededatos(wx.Frame):
def __init__(self,parent):
wx.Frame.__init__(self,parent,size=(500,400))
self.Show()
self.texto=wx.TextCtrl(self,pos=(100,50))
self.boton=wx.Button(self,label="guardar",pos=(220,50))
self.Bind(wx.EVT_BUTTON, self.onboton)
def onboton(self,event):
x=self.texto.GetValue()
conexion=sqlite3.connect("DATO.S3DB")
cursor=conexion.cursor()
cursor.execute("INSERT INTO datos VALUES(?)"),(x)
print x
app=wx.App()
b=basededatos(None)
app.MainLoop()
no se que le falta. por favor necesito ayuda