nissan240zx
Programmer
Hello All,
I am running a VB code, which was working great till Monday.
The scenario is this Vb code help an Access DB feeds its data from couple of mainframe tables.
Suddenly since monday I am getting this error below.
Syntax error (missing operator) in query expression 'cat_group_id =9 and ebcdic_name > = and ebdic_name < = 199229218'.
Run-time error '-2147217900 (80040e14)'
Here is the portion of the code in question (or atleast that what I think).
I am not sure where to start trouble shooting as the code was wrking with no issue for over 2 years..
Description of the tables used in the query.
Thsi is a table that stores information of collections team.
Blocks - Is a setup table in Access which defines the collector's name, ids collector code and their starting and ending collecting teams code.
For example collector john doe, has collecotr code JDO and his start collecting teams code (EBDCIC_NAME) could be AAA and ending could be ASF and so on.
PaysysTag is the table that gets the imported data from mainframe.
My doubt it that some thing to do with data coming in not matching with informaiton on the Blocks table.
Let me know if any other information is required to help me out.
Thanks in advance.
Nissan
A good programmer is someone who looks both ways before crossing a one-way street. - Doug Linder
I am running a VB code, which was working great till Monday.
The scenario is this Vb code help an Access DB feeds its data from couple of mainframe tables.
Suddenly since monday I am getting this error below.
Syntax error (missing operator) in query expression 'cat_group_id =9 and ebcdic_name > = and ebdic_name < = 199229218'.
Run-time error '-2147217900 (80040e14)'
Here is the portion of the code in question (or atleast that what I think).
Code:
Private Sub AssignAccounts()
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' This function assigns the accounts based on the alpha ranges
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Dim rstBlocks As ADODB.Recordset
Dim strQuery As String
Dim strUpdateQry As String
strQuery = "select BlockStartEBCDIC, BlockEndEBCDIC, CollectorId, CatGroupId from blocks order by catgroupId, CollectorId"
Set rstBlocks = New ADODB.Recordset
rstBlocks.Open strQuery, conn, adOpenDynamic
If rstBlocks.EOF = False Then
rstBlocks.MoveFirst
End If
Do While rstBlocks.EOF = False
strQuery = "update PaysysTag set COLLID = '" & rstBlocks.Fields("CollectorId") & _
"' where cat_group_id = " & rstBlocks.Fields("CatGroupId") & _
" and ebcdic_name >= " & rstBlocks.Fields("BlockStartEBCDIC") & _
" and ebcdic_name <= " & rstBlocks.Fields("BlockEndEBCDIC")
conn.Execute strQuery
rstBlocks.MoveNext
Loop
rstBlocks.Close
Set rstBlocks = Nothing
End Sub
I am not sure where to start trouble shooting as the code was wrking with no issue for over 2 years..
Description of the tables used in the query.
Thsi is a table that stores information of collections team.
Blocks - Is a setup table in Access which defines the collector's name, ids collector code and their starting and ending collecting teams code.
For example collector john doe, has collecotr code JDO and his start collecting teams code (EBDCIC_NAME) could be AAA and ending could be ASF and so on.
PaysysTag is the table that gets the imported data from mainframe.
My doubt it that some thing to do with data coming in not matching with informaiton on the Blocks table.
Let me know if any other information is required to help me out.
Thanks in advance.
Nissan
A good programmer is someone who looks both ways before crossing a one-way street. - Doug Linder