- Sep 02 Tue 2014 15:17
How to automatically login Putty with password?
- Aug 29 Fri 2014 16:01
在網頁用 CSS BLOCK 來顯示程式碼[修改痞客邦CSS]
- Aug 29 Fri 2014 12:43
[Html]How to display alt text for an image in chrome
今天在寫文件和html簡單頁面時,發現在chrome的圖片有用alt來顯示訊息,卻顯示不出來,拜讀估狗大神,發現似乎是 webkit bug ,底下是我試出的解決方式,須新增3個attribute: height, width, title,這樣就可以正確顯示訊息。
- Apr 29 Tue 2014 13:42
使用 NotePad++ 免安裝版本,並整合滑鼠右鍵選單
相信很多人都有這困擾, Windows 自帶的記事本開些大檔案很慢很容易卡住,用 Ultraedit 又是一筆費用,於是就上網找免費又好用的替代軟體,本來在 PSPAD 和 Notepad++ 兩者中抉擇,最後選用了 Notepad++ 。
- Apr 29 Tue 2014 13:41
Characterset problem when inserting into mysql database from java
哈,又是編碼問題。本來用 WebSphere 和 DB2 的環境,資料新增至資料庫中文都沒問題,怎麼一換到 tomcat 和 MySQL 這組合就中文新增到資料庫時就變成了問號。
- Apr 29 Tue 2014 13:41
[DB2]How to drop index in db2
use command:<br/>
drop index index_name
- Apr 29 Tue 2014 13:40
[DB2] How to adding columns to an existing table
To add columns to an existing table using the command line, enter:<br/>
ALTER TABLE table_name ADD column_name data_type null_attribute<br/>
- Apr 29 Tue 2014 13:35
[DB2] How to change the primary key for already existing table?
1. drop the existing primary key, use
ALTER TABLE Table_Name DROP PRIMARY KEY;