是否可以在 PL SQL 中使用字符串的可变数组作为常量以及如何使用?例如,我在 PL SQL 中创建了一个 CRUD 矩阵构建器,它适用于这种代码:
v_check := INSTR2(v_string_fnc, 'DROP ');
string_to_parse := v_string_fnc;
WHILE v_check > 0 LOOP
v_check := INSTR2(string_to_parse, 'DROP ');
IF v_check > 0 THEN
v_check := INSTR2(string_to_parse, 'TABLE ', v_check) + 6;
result_table := SUBSTR(string_to_parse, v_check);
string_to_parse := result_table;
result_table := RTRIM(SUBSTR(result_table, 0, INSTR(result_table, ' ')));
table_indx := result_table;
tab_res(table_indx).table_ := result_table;
tab_res(table_indx).delete_ := 'D';
end if;
end loop;
与此类似的是所有其他命令。现在我想知道如何做到这一点,而不是为每个操作单独块,以便在命令类似于“DROP TABLE”、“INSERT INTO”、“DELETE FROM”的情况下制作单个块。做一个可变的
commands := ( 'DROP TABLE ', 'INSERT INTO ', 'DELETE FROM ');
之后是这样的:
For i in 1..commands.length() loop
v_check := instr2(string_to_parse, commands(i));
v_check := INSTR2(string_to_parse, ' ', v_check) + 2;
result_table := SUBSTR(string_to_parse, v_check);
string_to_parse := result_table;
result_table := RTRIM(SUBSTR(result_table,
0,
INSTR(result_table, ' ')));
table_indx := result_table;
tab_res(table_indx).table_ := result_table;