Viewing 5 posts - 1 through 6 (of 6 total)
I think I am going about this all wrong. I am developing in a data project(.adp). Do I still need to create a connection in order to return...
April 30, 2009 at 7:05 am
Dim cmdSQL As ADODB.Command
Set cmdSQL = New ADODB.Command
cmdSQL.CommandText = "select count(OrderQty) from RFQOrderQtys where RFQNumber = " & Me.RFQNumber
cmdSQL.CommandType = adCmdText
Dim rsSQL As ADODB.Recordset
Set rsSQL = New ADODB.Recordset
rsSQL.Open cmdSQL
Dim intCount...
April 30, 2009 at 6:02 am
Thanks. I will keep OUTPUT in mind for my next project. It does look promising.
April 23, 2009 at 4:21 am
Works GREAT. Thank you very much!
April 22, 2009 at 3:34 pm
This could work for me. How do I make a variable equal to SCOPE_IDENTITY()? The variable needs to be an integer. Is it as easy as: ...
April 22, 2009 at 3:00 pm
Viewing 5 posts - 1 through 6 (of 6 total)