Can't seem to delete a record from a table. I can echo the query statement and paste it on the MySQL command line and it works fine, but not from my PHP script. No error is raised, just nothing happens. Besides dumb logic errors on my part, is there any weird situations I should be on the look out for? Do I just have too many indecies?
create table counts
(
count_id INT unsigned not null
auto_increment primary key,
user_id SMALLINT unsigned not null,
contribtyp_id SMALLINT unsigned not null,
count_year YEAR not null,
count TINYINT unsigned not null,
count_timestamp TIMESTAMP(10),
index(user_id),
index(user_id, contribtyp_id)
);
TIA,
Alex