Wikipedia:Reference desk/Archives/Computing/2017 August 6

From Wikipedia, the free encyclopedia
Computing desk
< August 5 << Jul | August | Sep >> August 7 >
Welcome to the Wikipedia Computing Reference Desk Archives
The page you are currently viewing is an archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages.


August 6[edit]

.apk[edit]

Could you refer me to a good, reliable audio recorder please?

Note:

This is very important. I have to capture distrusted ones lies and two faced acts. Videoing is bate…

I would have the phone in my hand and or in my pocket. I might also have to send the recordings to others…

43.245.123.4 (talk) 15:56, 6 August 2017 (UTC)[reply]

http://www.androidauthority.com/best-voice-recorder-apps-for-android-615332/ (((The Quixotic Potato))) (talk) 16:58, 6 August 2017 (UTC)[reply]

Java tool to generate schema-specific database interface?[edit]

Are there any tools that can generate a fluent Java interface to a specific database schema, with enums of the tables and their columns? In other words, are there any tools that would let me do something like this, if I wanted to find Machinae Supremacy's 3 longest albums?

MusicDatabase musicDb = MusicDatabase.lookupInstance();
ResultSet<String, Integer> results = musicDb
        .from(MusicDatabase.Table.SONG)
        .select(MusicDatabase.Table.SONG.Column.ALBUM)
        .selectSum(MusicDatabase.Table.SONG.Column.LENGTH)
        .whereEquals(MusicDatabase.Table.SONG.Column.ARTIST, "Machinae Supremacy")
        .groupBy(MusicDatabase.Table.SONG.Column.ALBUM)
        .orderBy(MusicDatabase.Table.SONG.Column.LENGTH, Order.DESCENDING)
        .limit(3)
        .execute();

NeonMerlin 19:16, 6 August 2017 (UTC)[reply]

You can look at Java_Database_Connectivity but for your specific example it is likely that you will need to program it yourself. Ruslik_Zero 20:10, 7 August 2017 (UTC)[reply]