carlos albornoz wrote: > hello list. > > I'm new at this, and I'm looking for examples but I find nothing, I need to > learn pygtk+mysql
I think you should split the problem, and apply a divide-and-conquer strategy. pygtk is basically about entering/displaying/modifying values in the computer memory by a user. You can find a tutorial and a reference manual at pygtk.org on how to do that. mysql is basically about saving/finding/retrieving values in the computer memory to/from a storage back-end (also known as 'data-base'). I have never used mysql, but no doubt there are plenty examples/tutorials etc on how to do that. Tackle each of these area's seperately, using 'values in the computer memory' as intermediate storage. Once you found your way with both, combine both techniques in one program. Sincerely, Albert _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://faq.pygtk.org/
