K
KSH
I am building the following sql string behind a form:
g_strsql = "SELECT TblCurrentTitle.band62 INTO hold "
g_strsql = g_strsql & "FROM tblCurrentTitle "
g_strsql = g_strsql & "WHERE (((TblCurrentTitle.band62) Is Not Null));"
based on the input from the form I will either be using field band62 or
field band64. I cannot figure out how to set this up to accept a variable in
the sql string.
any help would be appreciated.
g_strsql = "SELECT TblCurrentTitle.band62 INTO hold "
g_strsql = g_strsql & "FROM tblCurrentTitle "
g_strsql = g_strsql & "WHERE (((TblCurrentTitle.band62) Is Not Null));"
based on the input from the form I will either be using field band62 or
field band64. I cannot figure out how to set this up to accept a variable in
the sql string.
any help would be appreciated.