Re: POSTing to XML...
- From: "Álvaro G. Vicario" <alvaroNOSPAMTHANKS@xxxxxxxxxxxxxx>
- Date: Thu, 02 Oct 2008 14:23:42 +0200
rf escribió:
"transpar3nt" <casperghosty@xxxxxxxxx> wrote in message news:1859d338-1b56-4f2b-96de-593ac3c6dd40@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxHello, I am building a small app for the electronics store I work for
that allows employees to enter product information and it outputs a
printable sales estimate for the customer. I have it working
flawlessly, except that since I am using a MySQL database to store the
input info, I am limited by the number of rows in the db table (20
sets of each field type = 20 item rows on the printout).
Never heard of such a limit.
The OP is probably using a estimates table with this columns: estID, taxRate, date, description1, description2, description3... description20
.... and he's hitting the DB engine's max column size limit:
http://dev.mysql.com/doc/refman/5.0/en/column-count-limit.html
The obvious suggestion:
estimates: estID, taxRate, date
items: itemID, estID, taxed, description, model...
And them some _basic_ SQL abilities you car earn in a few minutes.
--
-- http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
-- Mi sitio sobre programación web: http://bits.demogracia.com
-- Mi web de humor al baño María: http://www.demogracia.com
--
.
- Follow-Ups:
- Re: POSTing to XML...
- From: transpar3nt
- Re: POSTing to XML...
- From: rf
- Re: POSTing to XML...
- References:
- POSTing to XML...
- From: transpar3nt
- Re: POSTing to XML...
- From: rf
- POSTing to XML...
- Prev by Date: Re: Trying to build a database driven website
- Next by Date: Re: Trying to build a database driven website
- Previous by thread: Re: POSTing to XML...
- Next by thread: Re: POSTing to XML...
- Index(es):
Relevant Pages
|