spewn
Programmer
- May 7, 2001
- 1,034
here is the code i'm using:
Code:
$dbh9 = DBI->connect('dbi:mysql:gtc','','');
$sth9 = $dbh9->prepare("INSERT INTO orders VALUES(0,'orderDate','no')");
$sth9->execute;
$orderNumber = $dbh9->{'mysql_insertid'};
this was working fine on the original box, and i'm able to access the table data, but i'm unable to insert or alter the table. i went to the actual table in mysqlcc and tried to delete the info in the table, and that's how i found out the files are read only.
i tried checking the permissions for users and found that they both have full permissions and grant option is checked.
still no go.
any ideas?
- g