gpt4 book ai didi

mysql - 使用存储过程性能会提高

转载 作者:行者123 更新时间:2023-11-29 03:06:38 26 4
gpt4 key购买 nike

我需要了解使用存储过程的优点。

目前客户端有 3 层架构。大多数表都是 innodb。大多数服务器有 ~64G 的内存,所有服务器都是 linux 64 位。最近他们也为一些服务器启动了集群。

客户更准确地了解数据库级别的事情,而不是写下优点和缺点。

最佳答案

3 层将优化资源利用率并显着改进您的程序。当你构建简单的应用程序时,你不会感觉到它,而当你构建大型应用程序时,你会明显感觉到不同。例如,看看这 3 层是如何使用的,看看它们之间的区别。

public class businesscheck
{
datacheck dldata = new datacheck();

public int PeronalDetails(int bh, string bse, string bt, string bde)
{
string sql = "[dbo].[newsinsert]";
int bheader = bheaderid + 1;
int result = dldata.SQLSP(sql, bheader, bsubtype, btitle, bdescr);
return result;
}

public void deleterecord(int a)
{
dldata.SQLC();
}
}

最后,当您从前端系统调用它时,可以轻松传递值,程序员和设计师可以分开工作。

    protected void Button1_Click(object sender, EventArgs e)
{

int MyInteger = Convert.ToInt32(TextBox1.Text);
string subtype = txt2.Text;


obj1.PeronalDetails( header, subtype, title, desc);

txt2.Text = "";

}

关于mysql - 使用存储过程性能会提高,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14117618/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com