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 Shaun E 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. tigreeuropeo

    User credentials problem when connecting to 9i

    I have Oracle 9i Database and 9iAS working ok now. Several computers running different applications connect ok to the db. I installed the Oracle client on a windows 2000 using the local administrator user, and when I try to connect with sql plus, says: "user credentials do not correspond...
  2. tigreeuropeo

    Oracle 9i Client connection problem...

    Hi. I've just installed Oracle 9i client on a W2000 Professional and when I try to connect to the database I receive this message: TNS-12638 Credential retrieval failed. The error messages book says: Enable tracing to determine exact error. I don't know how to turn tracing on. My database is...
  3. tigreeuropeo

    VB & Oracle (OO4O) / dynaset.addnew

    I am writing a program in VB and Oracle using OO4O. My program tries to add records in a database. I made a couple of programs using the syntax mydyn.executesql(sentSQL) and it works ok, but now I'm trying to use the methods of the dynaset. OraSession.BeginTrans mydyn.addnew...
  4. tigreeuropeo

    Tnsnames configuration problem

    Hi. I've just installed Oracle 9i client on a W2000 Professional and when I try to connect to the database I receive this message: TNS-12638 Credential retrieval failed. The error messages book says: Enable tracing to determine exact error. I don't know how to turn tracing on. My database is...
  5. tigreeuropeo

    "Destroying a Dynaset"

    How do you "destroy" a Dynaset after creating it? I want to reuse the dynaset variable, and I don't want to have garbage in this variable at the time of re-creating it. Thanks in advance
  6. tigreeuropeo

    OO4O / VB

    I'm using dynasets in VB with OO4O. I have no problems using them, but I don't know how to 'destroy' a dynaset and create it again. This is the situation: .... do artNumber = NextArtToProcess() ' some function --- SQLsent = "select art, qty from stock " & _...
  7. tigreeuropeo

    Modifying a form with subform generated by Wizard

    (posted earlier - 1 unsuccesful response) Hi!!!. I have a form and a subform in it. The form is to type in orders, and the subform the items of the order, it has unlimited number of lines. I generated these forms using the wizard a long time ago, and it has a lot of code in it, so I can't...
  8. tigreeuropeo

    Add a field in a subform???

    Hi!!! I have a form and a subform in it. The form is to type in orders, and the subform the items of the order, it has unlimited number of lines. I generated these forms using the wizard a long time ago, and it has a lot of code in it, so I can't start it again. I would like to add another...
  9. tigreeuropeo

    Use of "INTO" clause in a "SELECT" SQL Statement?

    Hi!!! I have a very simple table of products, identified by a reference number: Reference Text Description Text I need to retrieve the description of one product, but I don't know how to use the INTO clause in a SELECT statement. In many other programming languages the use would be...
  10. tigreeuropeo

    For smart people: add a field in a subform

    Hi, everyone!!. I have a form with a subform. With this form the users type in orders, and in the subform they type the articles they buy, identified by a reference. I have 3 tables related: orders, order items and articles. I didn't put the field "description" from the table...
  11. tigreeuropeo

    Showing a field related in a subform

    I have a form to capture product orders, which has a subform in it. Each line has: product number, quantity, price per unit, and the total of the line. It is like this: Order Number: _________ Date: ________ Client : _________ Line Prod.Number Quantity Price Total...
  12. tigreeuropeo

    Deletion of selected registers in a subform

    I have an order form with a subform in it. Each line in the order represents an article sold. I have to decrement the stock of each article in each line of the order. I did that using a button at the footer, in the click event; I used a SQL sentence. If I select more than one record and press...
  13. tigreeuropeo

    Elimination of confirmation message in a RunSQL "update"

    I am developing a very simple application, that manages products and orders. When entering one line of the order for a client, I have to update the stock like this: Private Sub Form_AfterInsert() strsql = "update stock set art_quant = art_quant - " & _...

Part and Inventory Search

Back
Top