公告版位
- Jul 12 Thu 2012 10:55
[ORACLE]ORACLE新增資料時插入UUID
- Jul 12 Thu 2012 10:48
[Oracle]如何查詢資料表內,資料筆數
資料表為:R_DATA_MAIN
select * from (select * from R_DATA_MAIN where data_owner ='tiger') where rownum <10;
重點是rownum的範圍,用oracle sql developer去查表,超過20筆就會變很慢
- Dec 09 Fri 2011 16:22
[Linux]php安裝oci8元件
先到oracle的網站,把instance-client抓一抓,並安裝
http://www.oracle.com/technetwork/database/features/instant-client/index-100365.html
我是抓rpm的所以下ivh
- Dec 09 Fri 2011 14:57
[linux]安裝php, apache, mysql & ssh元件
- Dec 07 Wed 2011 16:20
[ORACLE]Oracle開發理論
Oracle開發時參考了當時在IBM當研究員的Codd關聯式資料庫12法則(A Relational Model of Data for Large Shared Data Banks)以及IBM所發表的一些資料庫理論進行修正為一個關聯式資料庫
Codd關聯式資料庫的12法則包括如下:
- Sep 21 Wed 2011 15:02
[LINUX]LINUX上把BIG5轉換成UTF8--convmv
- Sep 21 Wed 2011 14:52
[Linux]查詢是否有安裝套件及線上安裝
- Sep 21 Wed 2011 14:33
[linux]如何在Linux 中 mount NTFS格式的硬碟
- Apr 04 Mon 2011 20:36
[MSN]如何刪除一不小心建立的msn群組
- Mar 28 Mon 2011 14:49
[jQuery ]jQuery API extension for Dreamweaver MXP
jQuery API extension for Dreamweaver
// Code jQuery FASTER in Dreamweaver!
Reduce tons of typing. If you are into jQuery and use Dreamweaver then you really need this extension. Let us save you tons of time by reducing keystrokes with our jQuery API extension for Dreamweaver which provides code coloring, Snippets, and code hints that list every jQuery and jQuery UI function for you.
(下載)Download
The Beta is available right now with a full release expected Q2 2008. Sign-up for updates.
- Mar 24 Thu 2011 11:10
[C#]webbrowser模擬送出(click)
以yahoo台灣為例
1、<input class="plong inputtext" type="text" id="p" name="p" accesskey="s" autocomplete="off">
- Mar 24 Thu 2011 11:06
[C#]Webbrowser如何確認網頁載入完成
WebBrowserReadyState的五種狀況
![]() |
Complete | 控制項已完成新文件和其所有內容的載入。 |
![]() |
Interactive | 控制項已載入文件足夠多的部分,可進行有限的使用者互動,例如按一下已顯示的超連結。 |
![]() |
Loaded | 控制項已載入並初始化新文件,但是尚未收到所有的文件資料。 |
![]() |
Loading | 控制項正在載入新文件。 |
![]() |
Uninitialized | 目前未載入任何文件。 |
private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
- Mar 24 Thu 2011 11:03
[C#]webbrowser轉址
webBrowser1.Navigate(網址);
- Mar 24 Thu 2011 10:59
[google]google記事本
網址是:http://www.google.com/notebook/?hl=zh-TW
firefox開起來會有問題,不能編輯
要開ie才行,可能是因為是很久以前開發的,聽說google已經不維護了
- Mar 24 Thu 2011 10:48
[JQUERY]攔截SUBMIT的其中一種方式