<?xml version='1.0'?>
<!DOCTYPE mysql_table SYSTEM "mysqltable.dtd" >
<mysql_table tbl_name='cartdata'>
<table_definition>
<column_definition col_name='id' AUTO_INCREMENT='yes' null='NOT_NULL' COMMENT='Auto-incrementing id'>
<type>
<INT length='9'/>
</type>
</column_definition>
<column_definition col_name='iMemberId' DEFAULT='0' null='NOT_NULL' COMMENT='Reference to member table'>
<type>
<INT length='9'/>
</type>
</column_definition>
<column_definition col_name='sEmail' null='NOT_NULL' COMMENT='Email address of the customer'>
<type>
<VARCHAR length='255'/>
</type>
</column_definition>
<column_definition col_name='sOrderNumber' null='NOT_NULL' COMMENT='The order number'>
<type>
<VARCHAR length='32'/>
</type>
</column_definition>
<column_definition col_name='sAnetTransId' null='NOT_NULL' COMMENT='Transaction ID from Authorize.Net'>
<type>
<VARCHAR length='64'/>
</type>
</column_definition>
<column_definition col_name='sBillName' null='NOT_NULL' COMMENT='Customer Billing Name'>
<type>
<VARCHAR length='255'/>
</type>
</column_definition>
<column_definition col_name='bProcessed' null='NOT_NULL' COMMENT='If this order is processed or not' DEFAULT='No'>
<type>
<ENUM>
<SET_ITEM value='Yes'/>
<SET_ITEM value='No'/>
</ENUM>
</type>
</column_definition>
<column_definition col_name='fTotal' null='NOT_NULL' COMMENT='The total price of the order'>
<type>
<DOUBLE length='9' decimals='2'/>
</type>
</column_definition>
<column_definition col_name='binCart' null='NOT_NULL' COMMENT='The actual cart contents'>
<type>
<LONGTEXT/>
</type>
</column_definition>
<column_definition col_name='sCCnum' null='NOT_NULL' COMMENT='The credit card number'>
<type>
<VARCHAR length='20'/>
</type>
</column_definition>
<column_definition col_name='dtProcess' null='NOT_NULL' COMMENT='Date and time this order was processed'>
<type>
<DATETIME/>
</type>
</column_definition>
</table_definition>
<table_options AUTO_INCREMENT='2311'>
<TYPE value='MyISAM'/>
</table_options>
</mysql_table>
