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: *

  • Users: TheMillionDollarMan
  • Order by date
  1. TheMillionDollarMan

    Local Intsall of Oracle for ADO

    thanks but none of these websites or replies answered my question.
  2. TheMillionDollarMan

    Local Intsall of Oracle for ADO

    DO I need a local install of oracle for ADO to work on my wrokstation? At the moment we have all of Oracle siting on the network and simply point the registry and path variables to the network drive no problem. Now when I try to connect using ado to an oracle database it says "Provider not...
  3. TheMillionDollarMan

    from TCHAR to char

    How can I go from a TCHAR to a char..? I have tried everything... CString s.GetBuffer(0) etc.. MSVC6.0 and W2k. Thanks D
  4. TheMillionDollarMan

    pc not responding during "System Idle Process"

    I think the hard drive is the problem. The performance always seems to be stem back to the HDD. Thanks
  5. TheMillionDollarMan

    pc not responding during "System Idle Process"

    hi. Sometimes my Windows 2k pc doesn't respond even though there the performance statistics I have gathered tell me that only the system idle process is using 99% of the CPU. Memory usage is normal as well. What the heck is it doing...? Anyway I can find out? I used C++ to gather the info...
  6. TheMillionDollarMan

    VC6.0 dll called by VB6.0

    again, thanks Ion for sharing your useful and extensive knowledge with us.
  7. TheMillionDollarMan

    VC6.0 dll called by VB6.0

    Is there an easy code example I could follow for this one from MS? I just need some one to give me a name so I can look it up. I need a VB application to call my dll (created in VC++ 6.0). I have no problem with VB part its only the C++ part. I have a small example but the error is...
  8. TheMillionDollarMan

    OCI in Binding poblem.

    ooohhhh. hey thats a great tip. I just adjusted my sql statement from Select OtherTextField from myTable where TextField=:TextFieldVariable; to Select NVL(OtherTextField,' ') as Txt1 from myTable where TextField=:TextFieldVariable; Thanks Ion!
  9. TheMillionDollarMan

    OCI in Binding poblem.

    Thanks Ion. I found the root cause. When in SQL Plus Select * from myTable where TextField='Dave'; in OCI Select * from myTable where TextField=:TextFieldVariable; char TextFieldVariable[9]; sprintf(TextFieldVariable,"Dave"); NO SINGLE QUOTES ON THE TEXT FIELD. One of those frustrating...
  10. TheMillionDollarMan

    better tool than dbx

    Sun solaris 5.6 and /SUNWspro/SC3.0/bin/CC
  11. TheMillionDollarMan

    OCI in Binding poblem.

    hi. I'm using MSVC6.0, Windows 2k, Ora9. OCI8. This is the code that binds the input varibale: CIBindByName(stmthp, &bndhp, errhp, (text *) ":RCRD_ID", strlen(":RCRD_ID"), (ub1 *) cid, cidlen+1, SQLT_CHR , (dvoid *) 0, (ub2 *) 0, (ub2) 0, (ub4) 0, (ub4 *) 0, OCI_DEFAULT) It completes...
  12. TheMillionDollarMan

    better tool than dbx

    Is there a better tool than dbx? I am used to MS VC++ and I can't stand to work with dbx. arrrg. Thanks D
  13. TheMillionDollarMan

    Accessing SAME text file using multiple threads

    I recommend the wrox book linux programming for beginers. it covers the topics you need for this project. after digesting this book you will be able to do what you want. D
  14. TheMillionDollarMan

    Linux Compilied prog not running on Sun

    Arkm, thanks for your input. So somehow I will need to compile AND run this application on Sun.
  15. TheMillionDollarMan

    Linux Compilied prog not running on Sun

    I want to compile my C program on linux and then run it on Sun Solaris. I created a small + basic application that is just a hello world app but doesn't work. I forgot the error message but it was something like can't run yourapp.o any sugestions? Thanks
  16. TheMillionDollarMan

    String to Interger not working.

    Thanks Sedj. I used to have a library of all of these little tips so it was easier to look up.
  17. TheMillionDollarMan

    String to Interger not working.

    What is the best method for doing this? I can't seem to compile I've tried: int iStr; String sStr = 10; iStr.parseInt(sStr,10); Error(146,14): object type required, but int found and getInteger(sPaymentFreq and new Integer(sPaymentFreq) none seem to compile. I have included import...
  18. TheMillionDollarMan

    Help with scope.

    thanks Salem! I am using cout << "" << endl; and it works better. ps I am trying to convince my boss that C++ is faster than java. All we need to do is back end processing. No web, just data movement and manipulation.
  19. TheMillionDollarMan

    Help with scope.

    Hi. I have a very simple file reader that I'm trying to build up (I'm from MSVC++ 6.0). Here is the code: char cDir[500] ; char c; char ctest[10]; int in = open("file.in", O_RDONLY); while(read(in,&c,1) == 1) { sprintf(cDir,"%c",c); printf(cDir); //Prints out characters ok...
  20. TheMillionDollarMan

    WhoisJava v's C++

    http://home.fnal.gov/~kuropat/snap/SNAP.html it sounds like Fortran, C++ then Java (depending on what you are using it for). So the ideal web app would be Data Access Fortran, Data Manipulation C++ and presentation in Java/jsp/javascript.

Part and Inventory Search

Back
Top