powered by simpleCommunicator - 2.0.61     © 2026 Programmizd 02
Целевая тема:
Создать новую тему:
Автор:
Закрыть
Цитировать
Форумы / Informix [игнор отключен] [закрыт для гостей] / execute sql string
3 сообщений из 3, страница 1 из 1
execute sql string
    #33530860
bumerang
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Гость
Доброе время суток
как написать процедуру которое выполнеяло бы sql string типа того

CREATE PROCEDURE myproc()
returning int;
DEFINE var_int ;
DEFINE sql_str = 'select count(*) form table_name';
let var_int = exec(sql_str); // так не работает
return var_int;
end procedure;

пасиба
...
Рейтинг: 0 / 0
execute sql string
    #33530904
Фотография Журавлев Денис
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Участник
http://www.sql.ru/faq/faq_topic.aspx?fid=535

-----------------------------------------------------------
Решительный шаг вперед -- результат хорошего пинка сзади
...
Рейтинг: 0 / 0
execute sql string
    #33532161
vasilis
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Участник
---------------------------------------
Using Dynamic Sql in Stored Procedure
---------------------------------------
vpshriyan
Location: Mumbai, India
---------------------------------------

One of the major drawback of Informix Stored Procedure is it's inability to perform dynamic SQL. A SP is parsed & optimized when compiled, preventing the use of dynamic SQL.
Here is an attempt to make a workaround stored procedure which attempts to insert a row for any table, any column dynamically. The inbound parameters are table name and dynamic number of column values.
Sample SP considers max of 5 column values, but you can edit it to suit according to your need. Data once passed, committed. There no provision to rollback. Should something go wrong, the exception handler pushes an internal rollback mechanism, hence data will not be committed. In such cases SP returns non-zero value, implying failure. Please note that the invoked SYSTEM command creates a separate transaction of its own.
The Informix SYSTEM statement provides the ability to execute any operating system command from within a stored procedure. A word of caution though, of the overhead required to execute an operating system command, the SYSTEM command should be avoided in routines with tight performance requirements. Use this procedure on your own cost and risk.

create dba procedure dynamic_insert(xtabname varchar(18),x1 varchar(64),x2 varchar(64),x3 varchar(64),x4 varchar(64),x5 varchar(64)) returning smallint;

define xowner, xdb varchar(18);
define xcols, xcoltype, xtabid, i smallint;
define xsql varchar(255);

on exception
--check for failure.
raise exception -746, 0, xtabname||": insert failed.";
return 1;
end exception

select owner,ncols,tabid into xowner,xcols,xtabid from systables where tabname=xtabname;
if xowner is null or xowner[1,1]=" " then
raise exception -746, 0, xtabname||" table does not exists.";
return 1;
end if

let xsql="insert into "||xtabname||" values (";

for i=1 to xcols
select coltype into xcoltype from syscolumns where tabid=xtabid and colno=i ;
if ( xcoltype=0 or xcoltype=7 or xcoltype=10 or xcoltype=13 ) then
if i=1 then
let x1="'"||x1||"'" ;
end if
if i=2 then
let x2="'"||x2||"'" ;
end if
if i=3 then
let x3="'"||x3||"'" ;
end if
if i=4 then
let x4="'"||x4||"'" ;
end if
if i=5 then
let x5="'"||x5||"'" ;
end if
end if
end for

if xcols=1 then
let xsql=xsql||x1 ;
end if
if xcols=2 then
let xsql=xsql||x1||","||x2 ;
end if
if xcols=3 then
let xsql=xsql||x1||","||x2||","||x3 ;
end if
if xcols=4 then
let xsql=xsql||x1||","||x2||","||x3||","||x4 ;
end if
if xcols=5 then
let xsql=xsql||x1||","||x2||","||x3||","||x4||","||x5;
end if

let xsql=xsql||")";

select trim(odb_dbname) into xdb from sysmaster:sysopendb
where odb_sessionid=dbinfo('sessionid') and odb_iscurrent='Y';

system 'echo "begin;set lock mode to wait;'||xsql||';commit"'|| '|$INFORMIXDIR/bin/dbaccess '||xdb ;
return 0;

end procedure;

Regards,
Shriyan

Last edited by vpshriyan on 12-09-03 at 07:52
-----
...
Рейтинг: 0 / 0
3 сообщений из 3, страница 1 из 1
Форумы / Informix [игнор отключен] [закрыт для гостей] / execute sql string
Найденые пользователи ...
Разблокировать пользователей ...
Читали форум (0):
Пользователи онлайн (0):
x
x
Закрыть


Просмотр
0 / 0
Close
Debug Console [Select Text]