I first create the file (appending mode)
db.to_csv(DB, mode='a', header=False, sep='\t')
then I try to open it:
rdb=pd.read_table(DB,sep="\t",header=True,parse_dates=True)
And next, Python crashes,probably because the file is open, is not it?
I have tried:
db.close()
but does not work