Sep-15-2022, 04:19 PM
I’m trying to learn Python so I am trying to recreate an app that I did previously with Filemaker as well as with Purebasic. The app uses SQLite3 to get data from a database. The first column in the database contains the record number of the record found when searched. However, in Python I am having a problem returning the value of a variable from a function.
I have a variable called recNo which I initialize with the value of 0. If I do not define the code as a function, it works fine and the value in row[0] is assigned to the variable recNo. If, however, I make the code a function, it runs with no errors but while the value in row[0] is assigned to recNo it is not being returned.
Probably something simple but I am missing it. I am using Print statements in the code for testing purposes but in the app I will be assigning each row in the database to a variable and trying to return them all.
Here is the code that I am using.
I have a variable called recNo which I initialize with the value of 0. If I do not define the code as a function, it works fine and the value in row[0] is assigned to the variable recNo. If, however, I make the code a function, it runs with no errors but while the value in row[0] is assigned to recNo it is not being returned.
Probably something simple but I am missing it. I am using Print statements in the code for testing purposes but in the app I will be assigning each row in the database to a variable and trying to return them all.
Here is the code that I am using.
import sqlite3 # Connect to the database conn = sqlite3.connect('dinobase.db') c = conn.cursor() def getRecord(srchName, recNo): # Execute the query c.execute('SELECT * FROM dino WHERE name = :srchName',{'srchName': srchName}) # Retrieving data for row in c: recNo = row[0] print("Record : ", row[0]) print("Name : ", row[1]) print("meaning : ", row[2]) print("pronounce : ", row[3]) print("period : ", row[4]) print("group : ", row[5]) print("size : ", row[6]) print("lived : ", row[7]) print("diet : ", row[8]) print("fossils : ", row[9]) print("factfile : ", row[10]) print("\n") return recNo # Close the connection conn.close recNo = 0 searchString = "Entelodon" getRecord(searchString, recNo) #Call the search function print(recNo)Any help is appreciated.