首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

SQLite Studio 多个sql语句一行执行

2013-12-05 
SQLite Studio 多个sql语句一起执行insert into Sockets( zoneindex, electricequipmentindex, brand, soc

SQLite Studio 多个sql语句一起执行

insert into Sockets
  ( zoneindex, electricequipmentindex, brand, sockettype, vendor, communicationmode)
values
  (@_zoneindex, @v_electricequipmentindex, @v_brand, @v_sockettype, @v_vendor, @v_communicationmode);
insert into reportmeterdatadictionary
  ( variabletype, SocketIndex, variablename,  variableunits)
values
  ( 'real', (select max(SocketIndex) from Sockets),  'Name', 'Unites');

在oracle数据库中用分号可以同时执行。到这个不可以。 这个库怎么同时执行多条sql语句了。
不会写存储过程。
[解决办法]
同时执行的原因是 让他们在同一个事物里?

热点排行