Skip to content

Instantly share code, notes, and snippets.

@Kuassim
Last active March 15, 2020 23:32
Show Gist options
  • Save Kuassim/91bad0eda17d8ecf5d1910dacc6782b3 to your computer and use it in GitHub Desktop.
Save Kuassim/91bad0eda17d8ecf5d1910dacc6782b3 to your computer and use it in GitHub Desktop.
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