Pazyryk
Deity
- Joined
- Jun 13, 2008
- Messages
- 3,584
The latest patch updated to the newest SQLite version. This bit me in the behind on another issue, but here's some good news:
What this means is that you can now do this:
...which is a lot prettier than the SELECT UNION ALL construction.
There might be other nice improvements to find. It's the newest SQLite version now (SQLite Release 3.7.17 On 2013-05-20) if anyone wants to look. Not sure what previous version Civ5 was using but probably from 2010.
Spoiler :

What this means is that you can now do this:
Code:
INSERT INTO Unit_Flavors (UnitType, FlavorType, Flavor) VALUES
('UNIT_BIREMES', 'FLAVOR_NAVAL', 8 ),
('UNIT_BIREMES', 'FLAVOR_NAVAL_RECON', 12 ),
('UNIT_TRIREMES', 'FLAVOR_NAVAL', 24 ),
('UNIT_TRIREMES', 'FLAVOR_NAVAL_RECON', 8 ),
('UNIT_QUINQUEREMES', 'FLAVOR_NAVAL', 30 ),
('UNIT_QUINQUEREMES', 'FLAVOR_NAVAL_RECON', 8 ),
('UNIT_DROMONS', 'FLAVOR_NAVAL', 24 ),
('UNIT_DROMONS', 'FLAVOR_NAVAL_RECON', 12 ),
('UNIT_CARRACKS', 'FLAVOR_NAVAL', 30 ),
('UNIT_CARRACKS', 'FLAVOR_NAVAL_RECON', 8 ),
('UNIT_CARAVELS', 'FLAVOR_NAVAL', 4 ),
('UNIT_CARAVELS', 'FLAVOR_NAVAL_RECON', 20 ),
('UNIT_GALLEONS', 'FLAVOR_NAVAL', 36 ),
('UNIT_GALLEONS', 'FLAVOR_NAVAL_RECON', 12 ),
('UNIT_IRONCLADS', 'FLAVOR_NAVAL', 36 );
There might be other nice improvements to find. It's the newest SQLite version now (SQLite Release 3.7.17 On 2013-05-20) if anyone wants to look. Not sure what previous version Civ5 was using but probably from 2010.