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 gkittelson 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. havoc33

    Problems with converting Access database to SQL

    Hi Andy! Believe it or not, the shopping cart is now up and running! I entered the queries like this: Create Procedure qryOrderInfo as SELECT o.orderID, o.*, p.ccode, p.cname, p.cprice, oi.numitems, c.* FROM customers c INNER JOIN orders o ON c.custID = o.ocustomerid INNER JOIN oitems oi ON...
  2. havoc33

    process problem

    OMG, I just found a typo in my script. The call openConn() was missing!! So now I get the error msg: The conversion of char data type to smalldatetime data type resulted in an out-of-range smalldatetime value. /eksamen/process.asp, linje 70 So there's got to be something wrong about the...
  3. havoc33

    process problem

    Does anyone here have SQL server? If so, I could send you the files so you'll have a look for yourselves. I've been trying to get this cart to work for 3 days now, and I know I'm close. It's just incredibly frustrating right now.
  4. havoc33

    process problem

    Hi, thanks for helping. Here's the code: sqlAdd = "INSERT INTO orders(ocustomerid,odate,orderamount,ocardtype,ocardno," sqlAdd = sqlAdd & "ocardname,ocardexpires,ocardaddress" If Not Request.Form("shipaddress")="" then sqlAdd = sqlAdd &...
  5. havoc33

    process problem

    When I try to check out my order in the shopping cart, I get an error which I don't know what means: Microsoft OLE DB Provider for SQL Server (0x80040E14) Line 1: Incorrect syntax near '.06'. /folder/process.asp, line 62 The code on that line is: call openConn() dbc.execute sqlAdd, intAffected
  6. havoc33

    Shopping cart problem

    Nevermind people, problem is solved. I just found out my global.asa file wasn't initiating...
  7. havoc33

    Shopping cart problem

    Hi, I been trying to get this shopping cart to work all week. Whenever I put an item in the basket I get an error msg: "Your browser does not enable cookies". But my browser DOES enable cookies. Here's the first half of the addprod.asp page: Dim prodid, quantity, arrCart, scartItem prodid =...
  8. havoc33

    Problems with converting Access database to SQL

    Maybe you could innstall that shopping cart yourself, and have a look? It only takes a couple of minutes. The url is: http://www.urlogy.com/asp/ashopkart.asp Once again, I really appreciate your help here.
  9. havoc33

    Problems with converting Access database to SQL

    No, the only query accepted was qryOrders...
  10. havoc33

    Problems with converting Access database to SQL

    Yeah, I understood the connection part. Here is the four queries: qryOrderInfo SELECT orders.orderID, orders.*, products.ccode, products.cname, products.cprice, oitems.numitems, customers.* FROM customers INNER JOIN (orders INNER JOIN (products INNER JOIN oitems ON products.catalogID...
  11. havoc33

    Problems with converting Access database to SQL

    All the tables from the Access database converts fine into the SQL database. But the access database has four stored queries that don't convert. Well, actually when I use the DTS wizards to convert the database, one of the queries, "qryOrders", is listed as a "view" and get's converted to a...
  12. havoc33

    Problems with converting Access database to SQL

    I'm converting a Access database to SQl, but I've ran into some problems. I'm a complete rookie at this and I'm trying out a free shopping cart from http://www.urlogy.com/. When converting to SQL, it says on the website something like this: "Remember to also create the stored procedures with...
  13. havoc33

    Problems with setting up a shopping cart.

    Yeah, I tried it. It still doesn't work.
  14. havoc33

    Problems with setting up a shopping cart.

    No, the data type is float. Any suggestions?
  15. havoc33

    Problems with setting up a shopping cart.

    I'm building a website with a shopping cart. But when I'm setting up the cartID, I get a error message. My browser is in norwegian, but I think the msg says "Type mismatch" (or something like that). Here is the code: dim CartID CartID = Request.QueryString ("CartID") If CartID = "" Then Dim...
  16. havoc33

    How to split up a string, and then count each character?

    I'm really stuck on this.. how do I split up a string and then count each character? For example that the letter A had 3 occurences, b had 2 etc. etc.. I've been working on this for several days, but I can't figure it out. So any help would be appreciated.

Part and Inventory Search

Back
Top