Re: Process database table (or complex data)?
Posted by bojan on Dec 09, 2015; 2:27pm
URL: https://forum.jogamp.org/Process-database-table-or-complex-data-tp4035890p4035894.html
Well, I need to use string and dates also. To make things short - I have to do something like sql join, but programmatically (in memory). So I need to load all data from all tables, and do something like
select t1.xxxx, t2.xxx, t3.xxx from table1 t1, table2 t2, table3 t3 where tj.date1 > t2.date2 and t2.str1 = t3.str2 and .....
We are doing this in pure java - it works, but sometimes we have performance issues, our idea was to try to run it on gpu and see how it performs, but now I am afraid is jocl capable of taking all data that we have (or use) and processing them...