This post provides a another basic docker-compose.yml .This time is to create a MySQL container with initial user accounts.
Ruby – Connect to MySQL without Rails
This post demonstrates how to connect to MySQL from Ruby, insert, select and delete table rows.
MySQL JSON Type
MySQL has started supporting JSON column data type since MySQL 5.7.8. This post explores this new type and its basic usages.
Spring Boot, JPA/Hibernate for Java EE 6 Java Persistence API Developer Certified Expert 1Z0-898
If you are planning to take Java EE 6 Java Persistence API Developer Certified Expert (1Z0-898), this post is for you. It demonstrates how to create a sample application using Spring Boot, and JPA/Hibernate to aid in your study.
Using @Query to execute a MySQL function
Using @Query to execute a MySQL function as follows. Here is an example that uses Spring Data @Query to execute a MySQL function that returns a string value. Let’s say we have a MySQL function that returns a predefined text.
How to use @ManyToMany in JPA
This article demonstrates how to use @ManyToMany in JPA using Hibernate JPA.
How to use Batoo JPA in a simple Application
This article demonstrates how to use Batoo JPA 2.0.1.2 in a simple application.
How to determine the current size of a MySQL Database
Background [wp_ad_camp_1] Sometimes you may need to limit the size of a particular MySQL specially for demo applications. Limiting the size of a database requires determining its current size before any insert operation. This article demonstrates how to use SQL
Mysqldump, Errorcode: 13, and Windows 7
In order to successfully export data from MySQL to some location in the same server host, the server application itself or the user account it runs on must have a write-access to the destination folder.
Giving SQL SELECT Priority over SQL INSERT/UPDATEs in MySQL
Giving SQL SELECT Priority over SQL INSERT/UPDATEs in MySQL