Examples of describeTable()


Examples of com.amazonaws.services.dynamodb.AmazonDynamoDB.describeTable()

        String tableName = getConfiguration().getTableName();
        LOG.trace("Querying whether table [{}] already exists...", tableName);

        try {
            DescribeTableRequest request = new DescribeTableRequest().withTableName(tableName);
            TableDescription tableDescription = ddbClient.describeTable(request).getTable();
            if (!isTableActive(tableDescription)) {
                waitForTableToBecomeAvailable(tableName);
            }

            LOG.trace("Table [{}] already exists", tableName);
View Full Code Here

Examples of org.xorm.datastore.ConnectionInfo.describeTable()

        ConnectionInfo ci = factory.getConnectionInfo();
        for (Iterator iter = tableNames.iterator(); iter.hasNext(); ) {
            String tableName = (String)iter.next();
            // Load it from db metadata
            nameToTable.put(tableName, ci.describeTable(tableName));
        }
    }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.