about 6 months ago - No comments
This small python program can export mysql database in a xml format import MySQLdb hostName="hostnamehere" userName="usernamehere" passWd="passwordhere" dbName="dbnamehere" print "Started…." #open file file = open("out.xml", ‘w’) file.write(""); file.write("\n\t<" + dbName + ">"); print "Connecting to " , hostName , "…"; conn=MySQLdb.connect(host=hostName,user=userName,passwd=passWd,db=dbName) cursor = conn.cursor () table_list = [] [...]
about 1 year ago - No comments
This utility helps to turnoff monitor automatically when the user locks his computer / laptop . http://code.google.com/p/monitores Open Source / Apache 2.0 Share +