PL/SQL SQL Coding Guideline 29 - Try to use anchored records as targets for your cursors

條款二十九,Try to use anchored records as targets for your cursors。 ...

June 8, 2016 · 1 min · 162 words · Larry Nung

Delete folder when Source Path Too Long

筆者使用 npm 安裝套件,因為套件的巢狀目錄過多造成路徑過長,透過檔案總管或是 Dos 的 rd 命令都無法將目錄刪除。 ...

June 8, 2016 · 1 min · 115 words · Larry Nung

PL/SQL SQL Coding Guideline 28 - Try to use ANSI join syntax if supported by your Oracle version

條款二十八,如果 Oracle 版本支援,請使用 ANSI-Join。 ...

June 7, 2016 · 1 min · 92 words · Larry Nung

PL/SQL SQL Coding Guideline 27 - Always use table aliases when your SQL statement involves more than one source

條款二十七,當使用多個來源做搜尋時,總是使用資料表別名。 ...

June 7, 2016 · 1 min · 93 words · Larry Nung

PL/SQL SQL Coding Guideline 26 - Always specify the target columns when executing an INSERT command

條款二十六,運行插入命令時總是指定塞入的欄位。 ...

June 7, 2016 · 1 min · 149 words · Larry Nung

StackExchange.Redis - Scripting

使用 StackExchange.Redis 開發 Redis 的 Lua Scripting 程式,只要簡單的透過 Database 物件的 ScriptEvaluateAsync 方法,將 Lua script 及所需的 keys 與 values 帶入即可。 ...

May 24, 2016 · 1 min · 429 words · Larry Nung

StackExchange.Redis - Pub/Sub Demo

使用 StackExchange.Redis 開發 Redis 的 Pub/Sub 程式,需先調用 GetSubscriber 方法取得 Subscriber 物件,再透過該 Subscriber 物件去設定事件訂閱以及發佈訂閱即可。 ...

May 24, 2016 · 1 min · 157 words · Larry Nung

StackExchange.Redis - Server Command Demo

要使用 StackeExchange.Redis 取得 Server 的資訊,或是運行 Server 的命令。要先調用 GetServer 方法取得 Server 物件,再透過該 Server 成員屬性或方法去操作即可。 ...

May 23, 2016 · 1 min · 172 words · Larry Nung

StackExchange.Redis - Configuration

欲連線至 Redis,需先設定 Configutaion,在 StackExchange.Redis 提供兩種設定方式,一種是用 ConfigurationOptions 物件直接宣告設定: ...

May 23, 2016 · 1 min · 138 words · Larry Nung

StackExchange.Redis - A high performance general purpose redis client for .NET languages

StackExchange.Redis 是 StackExchange 提供的 redis client 實作。 該套件具有以下特點: ...

May 22, 2016 · 2 min · 521 words · Larry Nung