Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. SIDChick

    Oracle and ADO

    There are some subtle differences in the SQL between, say SQL Server select statements and the ones in Oracle. For instance, Oracle does not like join statements and prefers to use the table joins in the where clauses like '+='.
  2. SIDChick

    How to Call a stored function with ADO

    'Assuming you have a valid connection object 'cn', your ado 'command object needs a few more properties identified: Set cmd = New ADODB.Command Set cmd.ActiveConnection = cn cmd.CommandText = "sp_YourSproc" cmd.CommandType = adCmdStoredProc cmd.CommandTimeout =...

Part and Inventory Search

Back
Top