Page 1 of 1

Daltonism

Posted: Fri May 31, 2013 9:53 pm
by Bzalel
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.

Re: Daltonism

Posted: Sat Jun 15, 2013 2:21 pm
by MELERIX
reasons ?

Re: Daltonism

Posted: Sat Jul 13, 2013 10:13 am
by Back
Melerix, look up the term Daltonism. Not sure though if Bzalel is trolling or serious.

Re: Daltonism

Posted: Thu Jan 02, 2014 11:57 am
by ainsley
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?

Re: Daltonism

Posted: Fri Jan 03, 2014 9:09 am
by RomCenter
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.

Re: Daltonism

Posted: Sat Jan 04, 2014 9:26 pm
by MELERIX
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.
well, here is an example for MySQL...

fast insert

Code: Select all

INSERT INTO `table1` VALUES
(a, b, c, d),
(e, f, g, h),
(w, x, y, z);
slow insert

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);