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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ToeJamNEarl

  1. ToeJamNEarl

    Troubleshooting error ORA-06502 from calling an Oracle Stored Procedur

    The oracle version on both server and client are the same 92i
  2. ToeJamNEarl

    Troubleshooting error ORA-06502 from calling an Oracle Stored Procedur

    Hey Guys, It's me again. I have been trying to figure out why one computer out of four that I've tried my application return an oracle error ora-06502. The error occurs when the program gets to the Execute command of the stored procedure. Can someone list me possibilities of why this would...
  3. ToeJamNEarl

    VB connection to Oracle 9i

    Try making the provider OraOleDB.Oracle
  4. ToeJamNEarl

    Parameter problems when trying to call a Stored procedure using ADO

    I just tested my software (old working version with ORAOLEDB) on another test machine, and it ran fine. I think there is something wrong with the computer itself that has been giving me problems. Is there anyway to check it a component is corrupted? Maybe the ADO component in charge of...
  5. ToeJamNEarl

    Parameter problems when trying to call a Stored procedure using ADO

    I find that last statement funny, because MS states their driver is superior. http://support.microsoft.com/default.aspx?scid=kb;en-us;229757
  6. ToeJamNEarl

    Parameter problems when trying to call a Stored procedure using ADO

    the set objRS = datcmd1.execute is used to have the stored procedure pass down a table of information from teh stored procedure to populate the recordset used. with the OraOLEDB provider and one other test machine, with prmNumofClients I can see it's value by doing prmNumOfclients.Value...
  7. ToeJamNEarl

    Parameter problems when trying to call a Stored procedure using ADO

    datCmd1.CommandType = adCmdStoredProc datCmd1.CommandTimeout = 16000 'Long timeout datCmd1.CommandText = "app_stat.Shipping_Tracker.Get_Statistics" The result set contains 2 fields a description and a count. the other parameters that are either IN OUT or just OUT get filled with the...
  8. ToeJamNEarl

    Parameter problems when trying to call a Stored procedure using ADO

    Yes, I used parameters objects. I have simulated your adoCMD.parameters.append line by adding: datCmd1.parameters.append prmX Where X is the parameter object created.
  9. ToeJamNEarl

    Parameter problems when trying to call a Stored procedure using ADO

    Hey Guys, I have tried it your way for creating parameters and I get the same error message: -2147217900 ORA-06550: line 1, column 7: PLS-00306: wrong number or types of arguments in call to '<PROCEDURE NAME>' ORA-06550: line 1, column 7: PL/SQL: statement ignored Microsoft OLE DB Provider...
  10. ToeJamNEarl

    Parameter problems when trying to call a Stored procedure using ADO

    Quick question, do input output paramters work well with the MSDAORA provider?
  11. ToeJamNEarl

    Parameter problems when trying to call a Stored procedure using ADO

    Hey Guys, I am trying to call a stored procedure with ADO command object as well as connection. I have the stored procedure return a reference cursor, and the way I call my stored procedure is: set objRS = datCMD1.execute The application gives me an error saying wrong type or number of...
  12. ToeJamNEarl

    Question regarding a range in VB with SQL

    Thanks Zemp, but I have figured out how I want to approach my problem and it was simpler than I had anticipated.
  13. ToeJamNEarl

    Question regarding a range in VB with SQL

    Hey guys, I have in a VB application two text boxes that the user can enter a range that they would want to query off of the server. The user can have the option of inputing as much of the range information they know when creating their ranges. I am wondering is there anyway I can use LIKE...
  14. ToeJamNEarl

    Saving to Excel from VB without it prompting

    JJames you'll also be getting a star when I get home from work, due to the alertbeforeoverwriting = false and displayalerts = false. Those two lines helped me get rid of my insanity when Excel tried to overwrite a file. I originally was going to go with the template file and I was until a...
  15. ToeJamNEarl

    Saving to Excel from VB without it prompting

    Casper, Thanks a bunch. I'll give you a star when I get home (company settings forbid javascript). I figured it out before checking your reply and I was at that same site. hmckillop: you'll get a star as well because you took the time to code out an example which was helpful. Thanks guys...

Part and Inventory Search

Back
Top