KoihimeNakamura
Creativity Murderer
So I'm inserting the following string:
into
When I do so in phpMyAdmin, it tells me the row ID is 11, but there's no rows in it at all.
Typing in COMMIT didn't help either.
The message from the server is:
1 rows affected, 0 rows found, query time X.
Code:
INSERT INTO scGUsers (userName, userPass, userEmail)
VALUES ("KoihimeNakamura", "deleteme", "test@example.com");
Code:
CREATE TABLE IF NOT EXISTS `scGusers` (
`userID` int(11) unsigned NOT NULL AUTO_INCREMENT,
`userName` varchar(255) COLLATE utf8_bin NOT NULL,
`userPass` varchar(255) COLLATE utf8_bin NOT NULL,
`userEmail` text COLLATE utf8_bin,
`userPriv` tinyint(3) unsigned DEFAULT '1',
PRIMARY KEY (`userID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
Typing in COMMIT didn't help either.
The message from the server is:
1 rows affected, 0 rows found, query time X.