Finding a Cart
Learn to create tables in SQLite for managing a cart.
We'll cover the following...
As users browse our online catalog, they will (hopefully) select products to buy. The convention is that each selected item will be added to a virtual shopping cart held in our store. At some point, our buyers will have everything they need and will proceed to our site’s checkout, where they’ll pay for the items in their carts.
This means that our application will need to keep ...