Sorry for my English. Automatic translate by google.
Please change the color of the icons of the roms
combination to avoid: red / green
Thank you.
			
			
									
						
										
						Daltonism
Moderator: Wanderer
					Forum rules
No roms requests or illegal links
	No roms requests or illegal links
Re: Daltonism
reasons ?
			
			
									
						
										
						- 
				Back
 
Re: Daltonism
Melerix, look up the term Daltonism. Not sure though if Bzalel is trolling or serious.
			
			
									
						
										
						Re: Daltonism
wouldn't when adding rom files, especially when you add your rom directory for the first time, to precache several roms in an array and then insert an huge amount of roms at once, instead to do one sql insert per game?
			
			
									
						
							Become a successful web designer with  brain dump   training course. Learn all the basics of web designing using  70-680 braindumps  tutorials and ARM  study guides.
			
						Re: Daltonism
And how do you insert a 'huge amount of roms at once' ?
There is no sql command to batch import.
I already do an uncommited load to speed up things.
			
			
									
						
							There is no sql command to batch import.
I already do an uncommited load to speed up things.
Eric - RomCenter developer
Report bugs here.
			
						Report bugs here.
Re: Daltonism
well, here is an example for MySQL...RomCenter wrote:And how do you insert a 'huge amount of roms at once' ?
There is no sql command to batch import.
I already do an uncommited load to speed up things.
fast insert
Code: Select all
INSERT INTO `table1` VALUES
(a, b, c, d),
(e, f, g, h),
(w, x, y, z);Code: Select all
INSERT INTO `table1` VALUES (a, b, c, d);
INSERT INTO `table1` VALUES (e, f, g, h);
INSERT INTO `table1` VALUES (w, x, y, z);

