MCPcopy Index your code
hub / github.com/geekcomputers/Python / get_details

Method get_details

bank_managment_system/backend.py:93–95  ·  view source on GitHub ↗
(self, acc_no)

Source from the content-addressed store, hash-verified

91 return self.cur.fetchone() is not None
92
93 def get_details(self, acc_no):
94 self.cur.execute("SELECT * FROM bank WHERE acc_no=?", (acc_no,))
95 return self.cur.fetchone()
96
97 def get_detail(self, acc_no):
98 self.cur.execute("SELECT name, balance FROM bank WHERE acc_no=?", (acc_no,))

Callers 5

showFunction · 0.80
on_search_submitFunction · 0.80
update_employee_submitFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected