Popular Posts
CTE, recursive search WITH DepartmentSearch(DeptID, DeptParent, DeptName, OuID) AS (     -- 找出簽核者所屬部門     SELECT d.DeptID, d.DeptParent, d.DeptName, d.OuID     FR... LogonUser Function : impersonate a windows user // This sample demonstrates the use of the WindowsIdentity class to impersonate a user. // IMPORTANT NOTES:  // This sample can be run only ... Invoke Gson#toJson() on anonymous class Create a anonymous object and try to serialize instance via gson. The code is below Result of execution. null result when serialize a an...
Stats
write
語法:
write at [/][<pos>][(<len>)] output
用法:
write 'Bruce'.                    " 輸出常數
Bruce
data CNAME(10) value 'James'.
write: / CNAME, 'is busy.'.       " 輸出變數, 多個值
James      is busy.
data NUM(10) value '0123456789'.
write / NUM.                      " 輸出變數
write /5 NUM.                     " 在位置5的地方輸出變數
write /(5) NUM.                   " 輸出5字元變數
write /5(5) NUM.                  " 在位置5的地方輸出5字元變數
0123456789  
     0123456789  
01234
     01234