Key_generator

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • raamay
    New Member
    • Feb 2007
    • 107

    Key_generator

    I came across the KEY_GENERATOR thing (as shown below) from one of the tutorial application in vb net. Its absolutely new to me and i wanna know why it is used and how it is used. I googled but didnt find anything about it.

    Code:
    Dim sql As String = "SELECT * FROM [KEY_GENERATOR] WHERE TableName = '" & srcTable & "'"
  • iam_clint
    Recognized Expert Top Contributor
    • Jul 2006
    • 1207

    #2
    Originally posted by raamay
    I came across the KEY_GENERATOR thing (as shown below) from one of the tutorial application in vb net. Its absolutely new to me and i wanna know why it is used and how it is used. I googled but didnt find anything about it.

    Code:
    Dim sql As String = "SELECT * FROM [KEY_GENERATOR] WHERE TableName = '" & srcTable & "'"
    This is just selecting from a tables where a column = your srcTable variable..

    Comment

    Working...