注册 登录
编程论坛 PowerBuilder

动态创建数据库事物对象

jimn1982 发布于 2010-07-08 17:55, 1142 次点击
请教一下,如何在pb中动态的创建多个事物对象
在循环中创建
for j = 1 to i step 1
    transaction  trans+string(j)
    trans+string(j) = create transaction   
next

但是这样说语法不通过

[ 本帖最后由 jimn1982 于 2010-7-8 18:02 编辑 ]
1 回复
#2
Bc_Newboy2021-11-05 16:59
transaction  trans_string[数量]

for j = 1 to i step 1
   trans_string[j]= create transaction
 next
1