Advertisement
penright

Untitled

Oct 3rd, 2023
1,222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.81 KB | None | 0 0
  1.     Sub UpdatetblRegTimeConcepts(ByVal ConceptID As Integer,
  2.                                  ByVal Description As String,
  3.                                  ByVal RegID As Integer,
  4.                                  ByVal PeriodID As Integer,
  5.                                  ByVal JobCodeSecurity As Integer)
  6.         DataAccessIris.ExecCommand("Insert into tblRegTimeConcepts (ConceptID,Description," +
  7.                                  "RegID,PeriodID,JobCodeSecurity) " +
  8.                                  " Values " +
  9.                                  "(" + ConceptID.ToString + "," +
  10.                                  "'" + Description + "'," +
  11.                                  RegID.ToString + "," +
  12.                                  PeriodID.ToString + "," +
  13.                                  JobCodeSecurity.ToString + ")")
  14.     End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement