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 Chris Miller 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: E3
  • Order by date
  1. E3

    Stored procedure help...

    The problem is when I select the IDS for Sandy, what it returns is a collection. How do I pass each of the values to the delete sql?
  2. E3

    Stored procedure help...

    Itemid Sellername ----------- ----------- 1 Sandy 2 Sandy Bidid Buyerid Buyername Itemid ----------- ----------- ------------ ----------- 1 1 Mark 1 How do I write the sql statements to pass the the itemid 1 and 2 to bids so I can delete the related data from bids table given...
  3. E3

    Microsoft SQL Users.

    rsUsers.Open "bidders",Conn,adOpenForwardOnly,adLockOptimistic,adCmdTable Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. /AddUser.asp, line 40 MSSQL doesn't alllow retriving for whole tables?
  4. E3

    Quotation help in VB

    Dim RSID Dim MaxID Set RSID = CreateObject("ADODB.Recordset") Set MaxID = CreateObject("ADODB.Recordset") MaxID = conn.Execute("Select MAX(bidderid)+1 from bidders") conn.Execute "Insert into bidders(bidderid,biddername, password, " _...
  5. E3

    Just plain weird..

    Problem solved. I had some typing mistakes that cause this.
  6. E3

    Just plain weird..

    eh? a friend of mine is using access and shes able to get it working. But I m using MSSQL Basically I m using TOP as my eof element. And I can't think of anyway to change the loop. Oh no..
  7. E3

    Just plain weird..

    Do Until RSCategory(&quot;parent_cat&quot;) = &quot;Top&quot; TempPath = &quot;<A HREF=&quot;&quot;&quot; & PathToPage _ & &quot;?CategoryName&quot; & RSCategory(&quot;parent_cat&quot;) & &quot;&quot;&quot;>&quot; _ & RSCategory(&quot;parent_cat&quot;) & &quot;<A> > &quot; &...
  8. E3

    RecordSet Lost...

    I have it in the later part of my asp file in the main html body codes.
  9. E3

    RecordSet Lost...

    I found a mistake in the sql statement I written should be Like instead of an equal sign. Somehow I m still having problems with the recordset and can't display the results
  10. E3

    recordset lost? sql?

    I found a mistake in the sql statement I written should be Like instead of an equal sign. Somehow I m still having problems with the recordset and can't display the results
  11. E3

    recordset lost? sql?

    Public Function GetAuctionItemsBySearch(SearchText, PathToPage) Set Conn = CreateObject(&quot;ADODB.Connection&quot;) Conn.ConnectionString = &quot;PROVIDER=SQLOLEDB;DATA SOURCE=&quot; & svrName _ & &quot;;INITIAL CATALOG=&quot; & dbName & &quot;;USER ID=&quot; &...
  12. E3

    RecordSet Lost...

    Public Function GetAuctionItemsBySearch(SearchText, PathToPage) Set Conn = CreateObject(&quot;ADODB.Connection&quot;) Conn.ConnectionString = &quot;PROVIDER=SQLOLEDB;DATA SOURCE=&quot; & svrName _ & &quot;;INITIAL CATALOG=&quot; & dbName & &quot;;USER ID=&quot; &...
  13. E3

    How to add a datetime field in sql7?

    I m using MS SQL. insert into auctionitem values (1,'wolfenstein','PC',20.00,1,'1991-07-03 00.00.00' ,1,'Newest PC Game') Server: Msg 242, Level 16, State 3, Line 1 The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value. The statement has been...
  14. E3

    How to add a datetime field in sql7?

    insert into auctionitem values (1,'wolfenstein','PC',20.00,1,'1991-07-03 00.00.00' ,1,'Newest PC Game') Server: Msg 242, Level 16, State 3, Line 1 The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value. The statement has been terminated.
  15. E3

    How to add a datetime field in sql7?

    Insert Into auctionitem values (1,'wolfenstein','PC',20.00,1,Jul 3 1991 12:00AM ,1,'Newest PC Game') Line 2: Incorrect syntax near '3'. This is how i set it up CREATE TABLE [auctionitem] ( [auctionitem_id] [int] NOT NULL , [productname] [varchar] NOT NULL , [category_name]...
  16. E3

    General Information

    33333

Part and Inventory Search

Back
Top