我想知道哪个函数对我的项目执行速度最快。 哪个功能将是最适合数据库 ..
还有另一种方法可以完成同样的任务吗?
void function1 ()
{
operation ;
loop ()
{
method insertInDB ( string ) ;
}
}
void insertInDB ()
{
open connection ;
insert;
close ;
}
OR
void function2 ()
{
operation ;
loop ()
{
string [];
}
method insertInDB (array []);
}
void insertInDB ()
{
open connection ;
loop ()
{
insert;
}
close ;
}
答案 0 :(得分:0)
第二。因为您只会打开一次BD连接以插入数据并关闭。 :)