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. rbyrne1

    Pull from Two Tables

    DISTINCT!!! That's it! Thank you.
  2. rbyrne1

    Insert New Row and Retuning IDENTITY Value

    Macleod: I would do this but I do not know how to set it up in code. I've seen examples of a stored procedure, but I don't know how to code it in VB Ron: Thanks for the links, but the NOCOUNT statement does not work in Pervasive SQL. Man, why did they have to use Pervasive??? I've seen so...
  3. rbyrne1

    ODBC Error Message

    UH - NEVERMIND!!! Silly me. I was connecting to the wrong database :) Sure wish you could retract posts.
  4. rbyrne1

    ODBC Error Message

    I am using VB.2005 to access a Pervasive SQL 9.5 database and I'm getting the following error: ERROR [42S02] [Pervasive][ODBC Client Interface][LNA][Pervasive][ODBC Engine Interface][Data Record Manager]No such table or object. ERROR [HY000] [Pervasive][ODBC Client...
  5. rbyrne1

    Pull from Two Tables

    I have two tables as follows: CUSTOMERS customernum customername ORDERS ordernum customernum partnum "SELECT customers.customernum, customername, ordernum FROM customers, orders WHERE partnum=123 and customers.customernum=orders.customernum" I'm trying to pull a recordset of all customers...
  6. rbyrne1

    Insert New Row and Retuning IDENTITY Value

    Sorry guys, but I've been out of the country for a while. PSQL is my acronym for Pervasive SQL, version 9.5. Anyway, I tried to set up the transaction but the select command doesn't fire until the transaction is committed, then it's too late for me to include the insertion of the detail...
  7. rbyrne1

    Insert New Row and Retuning IDENTITY Value

    I am attempting to write code that should perform the following: - insert a new data row into the ORDERS table - obtain the new IDENTITY field value (the field name is actually "ordernum" but it is an identity field type) from the ORDERS table - insert data row(s) into the ORDERSDET table with...

Part and Inventory Search

Back
Top