pb遊標規則、datastore、伺服器時間
獲取sql server資料庫時間
insert into tablename(Date)value getDate()
"select getdate() as serverDate"
然後讀取serverDate屬性即為SQL Server伺服器時間。
也可用下面語句直接獲取:
select getdate()
select CURRENT_TIMESTAMP
遊標程式設計套路::
String ls_temp1
String ls_temp2
declare cur_name CURSOR FOR
select field1,field2 from tablename
where condition
OPEN cur_name;
FETCH cur_name INTO :ls_temp1,:ls_temp2;
do while sqlca.sqlcode = 0
//其它處理語句,儘量不要包含SQL語句。如果要包含,一定要在fetch語句之前。
FETCH cur_dis INTO :ls_temp1,:ls_temp2;
loop
close cur_name;
摘自:http://blog.csdn.net/davinciteam/article/details/7432657
動態資料視窗生成::
Examples
These statements create a new DataWindow in the control dw_new from the DataWindow source code returned by the SyntaxFromSQL method. Errors from SyntaxFromSQL and Create are displayed in the MultiLineEdits mle_sfs and mle_create. After creating the DataWindow, you must call SetTransObject for the new DataWindow object before you can retrieve data:
string error_syntaxfromSQL, error_create
string new_sql, new_syntax
new_sql = 'SELECT emp_data.emp_id, ' &
+ 'emp_data.emp_name ' &
+ 'from emp_data ' &
+ 'WHERE emp_data.emp_salary>45000'
new_syntax = SQLCA.SyntaxFromSQL(new_sql, &
'Style(Type=Form)', error_syntaxfromSQL)
IF Len(error_syntaxfromSQL) > 0 THEN
// Display errors
mle_sfs.Text = error_syntaxfromSQL
ELSE
// Generate new DataWindow
dw_new.Create(new_syntax, error_create)
IF Len(error_create) > 0 THEN
mle_create.Text = error_create
END IF
END IF
dw_new.SetTransObject(SQLCA)
dw_new.Retrieve()
相關文章
- 資料包如何遊走於 Iptables 規則之間?
- 常用的PB時間函式彙總函式
- Oracle遊標共享(Cursor Sharing)--常規遊標共享和自適應遊標共享(ACS)Oracle
- js怎麼將伺服器GMT時間轉為中國標準時間JS伺服器
- HTML標籤巢狀規則HTML巢狀
- Html 標籤的巢狀規則HTML巢狀
- html標籤的巢狀規則HTML巢狀
- ? 圖解 == 操作符規則和不同型別間轉換規則圖解型別
- utc時間轉換成標準時間
- 修改CentOS伺服器時間為北京時間CentOS伺服器
- java記憶體間互動規則Java記憶體
- oracle不同版本之間exp/imp規則Oracle
- oracle全文索引之datastore_6_NESTED_DATASTOREOracle索引AST
- oracle全文索引之datastore_5_detail_datastoreOracle索引ASTAI
- oracle全文索引之datastore_4_URL_DATASTOREOracle索引AST
- oracle全文索引之datastore_3_FILE_DATASTOREOracle索引AST
- oracle全文索引之datastore_1_DIRECT_DATASTOREOracle索引AST
- 時間伺服器-NTP伺服器
- C++ include標頭檔案引入規則C++
- Linux使用ntp時間伺服器同步時間Linux伺服器
- Nginx伺服器配置---反向代理服務時proxy_pass的轉發規則Nginx伺服器
- Oracle遊標開啟時遇到併發更新Oracle
- oracle全文索引之datastore_2_MULTI_COLUMN_DATASTOREOracle索引AST
- 如何為團隊潛規則明碼標價
- 遊標翻頁模式下的遊標值模式
- 遊戲規則的制訂者就真的懂得“規則”與“樂趣”間的關係嗎?遊戲
- Oracle遊標Oracle
- Oracle 遊標Oracle
- SQL 遊標SQL
- 深入講解Python名稱空間規則!Python
- 常用的CSS命名規則(web標準化設計)CSSWeb
- 雲伺服器常用網站偽靜態規則伺服器網站
- 易優cms apache伺服器偽靜態規則Apache伺服器
- OLAP 伺服器,空間換時間可行嗎?伺服器
- 前端獲取伺服器時間前端伺服器
- Javascript獲取伺服器時間JavaScript伺服器
- 【java】校驗當前時間是否在規定的時間內Java
- Oracle遊標共享,父遊標和子游標的概念Oracle