Search Results
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-entity-framework-databinding-linq-entities.html
Figure 6.18 Placed GridView Control At this point it is recommended that you save your solution, and build the solution to ensure that there are no errors. Populating a List Box by Using the Results of a Entity LINQ Query In this part of the ... In ...
https://dev.mysql.com/doc/x-devapi-userguide/en/creating-a-collection.html
Optionally, for Connectors, the field reuseExistingObject can be set to true and passed as second parameter to prevent an error being generated if a collection with the same name already exists. In order to create a new collection call the ...
https://dev.mysql.com/doc/x-devapi-userguide/en/working-with-collections-basic-crud.html
Working with collections of documents is straightforward when using X DevAPI. The following example shows the basic usage of CRUD operations (see Section 4.3, “Collection CRUD Function Overview” for more details) when working with documents: ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-spring-config-jdbctemplate.html
The next example shows how to use NamedParameterJdbcTemplate inside of a DAO (Data Access Object) class to retrieve a random city given a country code. */ private DataSource dataSource; /** * Our query to find a random city given a country code. */ ... Spring makes extensive use of the Template method design pattern (see Template Method ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-opentelemetry.html
For applications on Linux systems that use OpenTelemetry (OTel) instrumentation, the connector adds query and connection spans to the trace generated by application code and forwards the current OpenTelemetry context to the server. If the ...Note ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-opentelemetry.html
For applications on Linux systems that use OpenTelemetry (OTel) instrumentation, the connector adds query and connection spans to the trace generated by application code and forwards the current OpenTelemetry context to the server. If the ...Note ...
https://dev.mysql.com/doc/ndbapi/en/mgm-examples-event-logging-basic.html
The source code for this program may be found in the NDB Cluster source tree, in the file storage/ndb/ndbapi-examples/mgmapi_logevent/main.cpp. This example shows the basics of handling event logging using the MGM API.
https://dev.mysql.com/doc/x-devapi-userguide/en/collection-add.html
The Collection.add() function is for storing documents in a collection, similar to the INSERT statement for an SQL database. It takes a single document or a list of documents as its argument, and is executed by the execute() function. The ...
https://dev.mysql.com/doc/x-devapi-userguide/en/collections-as-relational-tables.html
Applications that seek to store standard SQL columns with Documents can cast a collection to a table. In this case a collection can be fetched as a Table object with the Schema.getCollectionAsTable() function. From that moment on it is treated as a ...
https://dev.mysql.com/doc/x-devapi-userguide/en/creating-documents.html
Once a collection has been created, it can store JSON documents. You store documents by passing a JSON data structure to the Collection.add() function. Some languages have direct support for JSON data, others have an equivalent syntax to represent ...