I have recently starting delving into the world of Python to create a test
harness for work. We have multiple scripts that are run in order with similar
variables in each of them.
Basically all I am looking to do is open a connection to MySQLdb and retrieve
a field at a time and turn them into a variable. So:
Open Connection
Run SQL
Declare variable i.e. Name = "Result from step 2"
Is this possible and how do I go about it?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi all,
I have recently starting delving into the world of Python to create a test
harness for work. We have multiple scripts that are run in order with similar
variables in each of them.
Basically all I am looking to do is open a connection to MySQLdb and retrieve
a field at a time and turn them into a variable. So:
Is this possible and how do I go about it?