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: gsc123
  • Order by date
  1. gsc123

    I have a site in ASP

    Its a whole new world.. which do you prefer?
  2. gsc123

    SQL Server 2008 setup

    Yes but after that there is an option list .. which do I install? I did click of of them and got SQL server agent errors
  3. gsc123

    SQL Server 2008 setup

    Can anyone advise please how to setup SQL Server 08.. what are the required components to install to use queries, create tables, etc... similar user environment to have an access database - i've added a link to view
  4. gsc123

    I have a site in ASP

    Well its meanly SQL driven - but yes, many functions.. can you convert this to PHP so I can see where your coming from? Function processSQLruns(valType) select case valType case 1 sql = "SELECT TOP 1 bidhistory.bidAmount AS price FROM bidhistory WHERE...
  5. gsc123

    I have a site in ASP

    How easy is it to convert to PHP
  6. gsc123

    why dont this work. function

    This was the problem rsMax = Nothing
  7. gsc123

    ERROR MYSTERY

    found one porblem set rsMyMax = conntemp.execute(sql) if err.number <> 0 then Response.Write err.Description 'Response.Write sql if not rsMyMax.EOF or not rsMyMax.BOF then pPriceMaxBidMine = rsMyMax("price") processSQLruns = pPriceMaxBidMine else...
  8. gsc123

    ERROR MYSTERY

    Why no matter what I do I still get the error, creashes the function, wont give me a reply? sql = "SELECT TOP 1 bidhistory.bidAmount AS price FROM bidhistory WHERE (((bidhistory.idProduct)="&Session("pIdProduct")&") AND ((bidhistory.idCustomerBid)="&session("idcustomer")&")) ORDER BY...
  9. gsc123

    ERROR MYSTERY

    and heres another SELECT TOP 1 bidhistory.bidAmount AS price FROM bidhistory WHERE (((bidhistory.idProduct)=1560) AND ((bidhistory.idCustomerBid)=1487)) ORDER BY bidhistory.bidAmount DESC This query returns 0 because there are no fields, why is this flagging an error? Either BOF or EOF is...
  10. gsc123

    why dont this work. function

    Function pPriceMaxBidNotMine() 'get the highest bid for this item not belonging to me sql = "SELECT TOP 1 bidhistory.bidAmount AS price FROM bidhistory WHERE (((bidhistory.idProduct)="&Session("pIdProduct")&") AND ((bidhistory.idCustomerBid) <> "&session("idcustomer")&")) ORDER BY...
  11. gsc123

    Problem for session

    I have a bit of a problem, I seem to be re-inventing the wheel around my site the problem lies with two talbe products and bidhistory products as a price(which is current high bid and 0 if no bids) and startprice, the starting price of the item Bidhistory is empty if there are no bids so I...
  12. gsc123

    ERROR MYSTERY

    Yes its the error Either BOF or EOF has been reached?
  13. gsc123

    anyone fancing code clean up?

    I'm going mad looking at this can anyone tidy it up please? <%if Request.QueryString("frst") = "1" then%> <%Session("highbidder") = false%> <form method="post" action="pt_showcart.asp?processbid=1" name="recalculate"> <!-- first step is here confirm bid--> <%elseif...
  14. gsc123

    ERROR MYSTERY

    I get an error on these catchers but the query is valid? mySQL="UPDATE products SET products.Price = "&Session("pPrice")&" WHERE (((products.idproduct)="&Session("pIdProduct")&"))" conntemp.execute(mySQL) if err.number <> 0 then response.redirect "pt_supporterror.asp?error="&...
  15. gsc123

    return values off recordset

    if I was to directly access 2nd field how would I grab it
  16. gsc123

    ROUNDED CORNERS

    Thats good, how would I align it centre of the screnn with the background of the mainpage c0c0c0 and the <div foreground white?
  17. gsc123

    The best way to handle dates and times in access or sql

    How would that appear in the browser as a date?
  18. gsc123

    return values off recordset

    If i use this query SELECT TOP 2 bidhistory.bidAmount AS price FROM bidhistory WHERE (((bidhistory.idProduct)=1560) AND ((bidhistory.idCustomerBid)<>15)) ORDER BY bidhistory.bidAmount DESC how do I get both values? or specify a particular value... ie; I want the second one
  19. gsc123

    query to support lowest bid

    I have'nt switched over to SERVER yet, is this possible to convert to access query or not? or is access not supportable for this type of query?

Part and Inventory Search

Back
Top