Advertisement
| 10.07.2008 at 09:09AM PDT, ID: 23794274 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: |
Dim sql4 As String = "INSERT INTO [bomSecAuxEquipT] (BA_ID, IT_ID, BS_NumUsedInit, BS_NumUsedReq, BS_NumUsedNoCharge, IT_ID_Dest, BS_NumDestInit, BS_NumDestNoCharge, BS_Desc, BS_Print_Desc, BS_DispOrder) Select (select BA_ID from bomAuxEquipT where BP_ID = @BP_IDNew), IT_ID, BS_NumUsedInit, BS_NumUsedReq, BS_NumUsedNoCharge, IT_ID_Dest, BS_NumDestInit, BS_NumDestNoCharge, BS_Desc, BS_Print_Desc, BS_DispOrder from bomSecAuxEquipT where BA_ID in (select BA_ID from bomAuxEquipT where bp_ID = @BP_ID)"
Using conn As New SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings("HCISDataCARsConnectionString").ConnectionString)
Dim cmd As New SqlCommand(sql4, conn)
cmd.Parameters.Add(New SqlParameter("@BP_IDNew", BP_IDNew))
cmd.Parameters.Add(New SqlParameter("@BP_ID", BP_ID))
conn.Open()
cmd.ExecuteNonQuery()
cmd.Connection.Close()
End Using
|
Advertisement