Results 1 to 2 of 2

Thread: I need help in c++.

  1. #1
    HernandezOrtiz is offline Senior Member
    Join Date
    Dec 2009
    Posts
    301
    Rep Power
    3

    Default I need help in c++.

    I am learning C programming language. I have interfaced the program with Oracle 7.2 and there are the graphical representations of the Cache memory management. the difficulty is when I am linking the program its giving me an error as to add the user id and password for Oracle and when I add it gives me an error as to DBA rights are not given to this user and then the program is linking .

  2. #2
    MartinWilson is offline Senior Member
    Join Date
    Dec 2009
    Posts
    281
    Rep Power
    3

    Default

    I believe you’re trying to connect with Oracle by ODBC and as you said it’s not accepting the username and the password allocated. Though when you try to logon directly it’s accepting. According to me issue is with the scope resolution as C++ can't seem to fix the scope using ODBC. So what you can do is make a virtual pointer and dereference it directly to the database bypassing other parts.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48