I have this .xls vba code where I am trying to check record count and based on that decide further logic.
This vba was working fine with Provider = MSDAORA but when I changed to Provider = OraOLEDB.Oracle this vba check query always return record count = 0
Every other queries which use OraOLEDB.Oracle works fine.
Attached here code.
Thanks in advance for pointing out problem here.
Public Function CheckJob(BusDate As String, JobName As String) As Boolean
Dim Cnt As ADODB.Connection, rst As ADODB.Recordset
Dim cmdGetComp As New ADODB.Command
Dim RecCount As Integer
Dim rng As Range
Dim StConn As String
Dim Sql As String
StConn = strETDDBConnStringADO()'This is connection string with all credentials
Set Cnt = New ADODB.Connection
Set rst = New ADODB.Recordset
Set cmdGetComp = New ADODB.Command
Sql = "Select Count(*) from XYZ_DBO.TABLE_STATUS where BUSINESS_DATE='XXXXXX'"
With Cnt
.Open (StConn)
With cmdGetComp
.ActiveConnection = Cnt ' Reference to a Connection object.
.CommandType = adCmdText
.CommandText = Sql
Set rst = .Execute() ' Set the Recordset to the results of executing the query
End With
RecCount = rst(0) 'rst(0) always return value of 0 even if manual query have 1 record
.Close
End With
If RecCount > 0 Then
CheckJob = True
Else
CheckJob = False
End If
End Function
BUSINESS_DATEcolumn? Is it aDATE? Or aVARCHAR2? Are you comparing it to a date? Or to a string? – Justin Cave Mar 1 at 19:50'XXXXXX'in your query? Is that a hard-coded string? What format is that string in? What is the time component ofBUSINESS_DATE? Are you guaranteed that the time component is midnight? – Justin Cave Mar 1 at 22:06