I am new to Python, coming from Foxpro and C#. I have 300,000 names in a MySQL table sorted alphabetically by last name then first name. I need to be able to find a name and then scroll up or down to view similar names. I am using Python and MySQL. In Foxpro, I would execute a SEEK command to place the record pointer on the name I wanted, then I would move the pointer up or down to find similar names. From what I am reading, python uses a cursor to accomplish this functionality along with an SQL query. Am I on the right track? Is there a better approach?
thank you
thank you