Menu

Hiển thị các bài đăng có nhãn database. Hiển thị tất cả bài đăng
Hiển thị các bài đăng có nhãn database. Hiển thị tất cả bài đăng

Liferay 6.2: Custom Dynamic query with array parameters

Liferay Service Builder (LSB) is a great tool for Liferay developers. We use the methods of the services which is generated by LSB in the most of the case. But, you can not work with multi-table. There was a solution in this case (click here to see). This article is a good guide but you cannot execute a query with array parameters. So, executing a custom dynamic query with array parameters is the purpose of this post.

SQL: Một trường hợp của lệnh UPDATE trong SQL

Lệnh UPDATE là một lệnh rất hay gặp trong việc thao tác với cơ sở dữ liệu. Cú pháp của lệnh như sau:
UPDATE SET Column_1 = Value_1, ..., Column_n = Value_n [WHERE ....];

Postgresql: Execute some simple commands

Postgresql logo
If you working with small scale database, you always using a database management software to done your task. For example, I usually use pgAdmin to integrated with Postgresql database. In some cases, you have to face with a large-scale database, using a database management isn't best choose. At that moments, I often use commands to done my jobs.
In this post, I will show you how to execute a SQL file from the terminal screen.

Java: Singleton Pattern và kết nối với cơ sở dữ liệu trong các ứng dụng Java

Singleton pattern
Bài viết này mình sẽ nói đến hai phần i)thứ nhất là Singleton Pattern và ii) thứ hai là kết nối với cơ sở dữ liệu trong các ứng dụng Java đơn giản. Cuối cùng, mình trình bày lý do tại sao mình lại áp dụng Singleton Pattern vào việc kết nối với cơ sở dữ liệu trong các ứng dụng Java.