আমার নীচের পুনরাবৃত্তির কোড রয়েছে, প্রতিটি নোডে আমি নোড প্যারেন্ট নোডের অন্তর্ভুক্ত পেতে এসকিএল কোয়েরি কল করি।
ত্রুটি এখানে:
Exception RuntimeError: 'maximum recursion depth exceeded' in <bound method DictCursor.__del__ of <MySQLdb.cursors.DictCursor object at 0x879768c>> ignored
RuntimeError: maximum recursion depth exceeded while calling a Python object
Exception AttributeError: "'DictCursor' object has no attribute 'connection'" in <bound method DictCursor.__del__ of <MySQLdb.cursors.DictCursor object at 0x879776c>> ignored
এসকিএল ফলাফল পেতে আমি যে পদ্ধতিটি কল করি:
def returnCategoryQuery(query, variables={}):
cursor = db.cursor(cursors.DictCursor);
catResults = [];
try:
cursor.execute(query, variables);
for categoryRow in cursor.fetchall():
catResults.append(categoryRow['cl_to']);
return catResults;
except Exception, e:
traceback.print_exc();
উপরোক্ত পদ্ধতিটি নিয়ে আমার আসলে কোনও সমস্যা নেই তবে প্রশ্নের যথাযথ ওভারভিউ দেওয়ার জন্য আমি যাইহোক এটি রেখেছি।
পুনরাবৃত্তি কোড:
def leaves(first, path=[]):
if first:
for elem in first:
if elem.lower() != 'someString'.lower():
if elem not in path:
queryVariable = {'title': elem}
for sublist in leaves(returnCategoryQuery(categoryQuery, variables=queryVariable)):
path.append(sublist)
yield sublist
yield elem
পুনরাবৃত্তি ফাংশন কল করা
for key, value in idTitleDictionary.iteritems():
for startCategory in value[0]:
print startCategory + " ==== Start Category";
categoryResults = [];
try:
categoryRow = "";
baseCategoryTree[startCategory] = [];
#print categoryQuery % {'title': startCategory};
cursor.execute(categoryQuery, {'title': startCategory});
done = False;
while not done:
categoryRow = cursor.fetchone();
if not categoryRow:
done = True;
continue;
rowValue = categoryRow['cl_to'];
categoryResults.append(rowValue);
except Exception, e:
traceback.print_exc();
try:
print "Printing depth " + str(depth);
baseCategoryTree[startCategory].append(leaves(categoryResults))
except Exception, e:
traceback.print_exc();
অভিধান মুদ্রণের জন্য কোড,
print "---Printing-------"
for key, value in baseCategoryTree.iteritems():
print key,
for elem in value[0]:
print elem + ',';
raw_input("Press Enter to continue...")
print
পুনরাবৃত্তিটি যদি খুব গভীর হয় তবে আমার পুনরাবৃত্তি ফাংশনটি কল করার সময় আমার ত্রুটি হওয়া উচিত, তবে আমি অভিধানটি মুদ্রণের সময় এই ত্রুটিটি পাই।