Update Skills
Browse files- AddSkillDetails.py +7 -3
AddSkillDetails.py
CHANGED
@@ -62,6 +62,10 @@ class AddSkill:
|
|
62 |
return returnMsg
|
63 |
def GetSkillDetails():
|
64 |
conn = DbConnection.GetMySQLDbConnection()
|
65 |
-
|
66 |
-
|
67 |
-
|
|
|
|
|
|
|
|
|
|
62 |
return returnMsg
|
63 |
def GetSkillDetails():
|
64 |
conn = DbConnection.GetMySQLDbConnection()
|
65 |
+
cursor = conn.cursor()
|
66 |
+
cursor.execute("SELECT * FROM skillmaster")
|
67 |
+
cursor.close()
|
68 |
+
# Close the connection
|
69 |
+
conn.close()
|
70 |
+
return cursor.fetchall()
|
71 |
+
|