@@ -21,7 +21,7 @@ To use it in your application, add the following dependency:
2121Here is our canonical example rewritten with the query builder:
2222
2323``` java
24- import static com.datastax.oss.driver.api.querybuilder.QueryBuilderDsl .* ;
24+ import static com.datastax.oss.driver.api.querybuilder.QueryBuilder .* ;
2525
2626try (CqlSession session = CqlSession . builder(). build()) {
2727
@@ -38,11 +38,11 @@ try (CqlSession session = CqlSession.builder().build()) {
3838
3939#### Fluent API
4040
41- All the starting methods are centralized in the [ QueryBuilderDsl ] class. To get started, add the
41+ All the starting methods are centralized in the [ QueryBuilder ] class. To get started, add the
4242following import:
4343
4444``` java
45- import static com.datastax.oss.driver.api.querybuilder.QueryBuilderDsl .* ;
45+ import static com.datastax.oss.driver.api.querybuilder.QueryBuilder .* ;
4646```
4747
4848Choose the method matching your desired statement, for example ` selectFrom ` . Then use your IDE's
@@ -183,6 +183,6 @@ For a complete tour of the API, browse the child pages in this manual:
183183 * [ Terms] ( term/ )
184184 * [ Idempotence] ( idempotence/ )
185185
186- [ QueryBuilderDsl ] : http://docs.datastax.com/en/drivers/java/4.0/com/datastax/oss/driver/api/query-builder/QueryBuilderDsl .html
187- [ SchemaBuilderDsl ] : http://docs.datastax.com/en/drivers/java/4.0/com/datastax/oss/driver/api/query-builder/SchemaBuilderDsl .html
188- [ CqlIdentifier ] : http://docs.datastax.com/en/drivers/java/4.0/com/datastax/oss/driver/api/core/CqlIdentifier.html
186+ [ QueryBuilder ] : http://docs.datastax.com/en/drivers/java/4.0/com/datastax/oss/driver/api/query-builder/QueryBuilder .html
187+ [ SchemaBuilder ] : http://docs.datastax.com/en/drivers/java/4.0/com/datastax/oss/driver/api/query-builder/SchemaBuilder .html
188+ [ CqlIdentifier ] : http://docs.datastax.com/en/drivers/java/4.0/com/datastax/oss/driver/api/core/CqlIdentifier.html
0 commit comments