2013年5月28日 星期二

修復Asterisk cdr table

今天突然發現Trixbox無法顯示CDR Report, 用console進入mysql, 下select指令得到下列錯誤訊息:

mysql> use asteriskcdrdb;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> select * from cdr order by calldate;
ERROR 1194 (HY000): Table 'cdr' is marked as crashed and should be repaired

2013年5月16日 星期四

python 串列與tuple

繼字串之後,再來要說明的是串列(list)與tuple。串列與tuple非常類似,唯一的差別在於: 串列可以修改,而tuple不能修改。

串列與tuple裡面的成員可以是任何的物件,數字、字串、其他串列或tuple,甚至是辭典、function物件...。它們也可以像字串一樣使用索引、切片來取得其中的成員。