Created
April 12, 2016 03:56
-
-
Save ahodroj/7e48fe30817ab0ce00c7147b8cc4e3de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A SQL query with a user-defined function ADJUSTED_PRICE | |
// which will return all the stock prices with an adjusted price = 23.2 | |
query = new SQLQuery<Stock>(Stock.class, "ADJUSTED_PRICE(price) = ?", 23.2); | |
IntValue[] values = gigaSpace.readMultiple(query); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment