Displaying 1 result from an estimated 1 matches for "latin1_general_cs".
Did you mean:
latin1_general_ci
2006 Jul 08
1
Need Help Understanding Situation with Table Columns
...rate scaffold Gmap Admin
so that I could easily create records in the gmaps table (created with this code):
DROP TABLE IF EXISTS `gmaps`;
CREATE TABLE `gmaps` (
`id` int(11) NOT NULL auto_increment,
`type` tinyint(4) NOT NULL default ''0'',
`description` varchar(100) collate latin1_general_cs NOT NULL default '''',
`lat` float NOT NULL default ''0'',
`lon` float NOT NULL default ''0'',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_cs
COMMENT=''For storing certain geolocations'' A...