Access denied for user 'allen712_saccapp'@'localhost' (using password: YES) Access denied for user 'apache'@'localhost' (using password: NO) create table contracts (
id int(11) not null auto_increment,
contractno varchar(40) not null,
clid int(11) not null,
acctno varchar(12) not null,
title varchar(80) not null,
contact varchar(30) not null,
phone varchar(20) not null,
email varchar(80) not null,
contractdate date not null,
renewaldate date not null,
active char(1) not null,
billing_type int(1) not null,
billing_freq int(3) not null,
billing_amount varchar(12) not null,
billing_service int(1) not null,
notes tinytext not null,
invnote tinytext not null,
fs_on_service char(1) not null,
fs_on_wait char(1) not null,
fs_on_xtra char(1) not null,
fsovrd varchar(12) not null,
primary key(id) )
create table contracts (
id int(11) not null auto_increment,
contractno varchar(40) not null,
clid int(11) not null,
acctno varchar(12) not null,
title varchar(80) not null,
contact varchar(30) not null,
phone varchar(20) not null,
email varchar(80) not null,
contractdate date not null,
renewaldate date not null,
active char(1) not null,
billing_type int(1) not null,
billing_freq int(3) not null,
billing_amount varchar(12) not null,
billing_service int(1) not null,
notes tinytext not null,
invnote tinytext not null,
fs_on_service char(1) not null,
fs_on_wait char(1) not null,
fs_on_xtra char(1) not null,
fsovrd varchar(12) not null,
primary key(id) )