月归档:
2010年04月
| 记录数: 11
-
- install firefox3.6 on ubuntu 9.10
- 2010-04-25
First , you should add this command in the shell:
sudo add-apt-repository ppa:ubuntu-mozilla-daily/ppa
Then,do update:
sudo apt-get update
Last step:
sudo apt-get install firefox-3.6
See,you can run Firefox 3.6 now!
- Views(6031) | Comments(0) | In System/Application Linux Server
-
- PythonでAccessデータベース(*.mdb)にテーブルを追加する
- 2010-04-16
テーブルの追加は、ADOXを使ってできますが、ADOからSQLを発行した方が楽なので、そちらで。テーブルの存在確認をしたかったので、これは ADOXで行っています。
#!c:/Python25/python.exe -u # encoding: cp932 import win32com.client MDB_NAME = r"test.mdb" PASSWORD = "pass" TABLE_NAME = u"テーブル"
- Views(9129) | Comments(0) | In Python相关

