Last active
March 15, 2020 23:32
-
-
Save Kuassim/91bad0eda17d8ecf5d1910dacc6782b3 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
public class HelloFunction { | |
private PoolDataSource poolDataSource; | |
private UUID uuid = null; | |
long t0,t1; | |
int t; | |
private final File walletDir = new File("/tmp", "wallet"); | |
private final String namespace = System.getenv().get("NAMESPACE"); | |
private final String bucketName = System.getenv().get("BUCKET_NAME"); | |
private final String dbUser = System.getenv().get("DB_USER"); | |
private final String dbPassword = System.getenv().get("DB_PASSWORD"); | |
private final String dbUrl = System.getenv().get("DB_URL"); | |
final static String CONN_FACTORY_CLASS_NAME="oracle.jdbc.pool.OracleDataSource"; | |
... | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment