本文介绍了在后面的代码中插入查询将在Prod中工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





我想知道后面的VB.Net代码中的Insert查询将在生产环境中工作,因为它在其他环境中工作得很好( DEV,QA)但不是在制作中,所以我想知道的是,因为任何限制,在后面的代码中插入查询不能在生产中工作。



代码: -

Hi ,

I would like to know the Insert query in the VB.Net code behind will work in Production environment because which is working perfectly in other environments(DEV,QA) but not in production so I want to know is that because of any restriction that insert query in code behind is not working in production.

Code :-

Dim _sqlDET As String = _
               "INSERT INTO dbo.tablename1 " & _
               "SELECT * FROM dbo.tablename2 " & _
               "WHERE ID=" & _ID & ""





请帮我解决这个问题..



Please help me to fix this ..

推荐答案



这篇关于在后面的代码中插入查询将在Prod中工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 09:09