- Java EE 8 Development with Eclipse
- Ram Kulkarni
- 120字
- 2021-06-18 18:59:53
Java Database Connectivity
Java Database Connectivity (JDBC) is a specification to access a relational database in a common and consistent way. Using JDBC, you can execute SQL statements and get results on different databases using common APIs. A database-specific driver sits between the JDBC call and the database, and it translates JDBC calls to database-vendor-specific API calls. JDBC can be used in both the presentation and business layers directly, but it is recommended to separate the database calls from both the UI and the business code. Typically, this is done by creating Data Access Objects (DAOs) that encapsulate the logic to access the database. JDBC is actually a part of Java Standard Edition. Java SE 8 contains JDBC 4.2.
推薦閱讀
- Mastering Concurrency Programming with Java 8
- Building a Home Security System with Raspberry Pi
- 精通Linux(第2版)
- 從零開始學Linux編程
- Go語言編程
- Distributed Computing in Java 9
- jQuery技術內幕:深入解析jQuery架構設計與實現原理
- Angular Design Patterns
- Spring Data JPA從入門到精通
- 軟硬件綜合系統軟件需求建模及可靠性綜合試驗、分析、評價技術
- 輕松學Scratch 3.0 少兒編程(全彩)
- 程序員的英語
- Learning Node.js for Mobile Application Development
- 秒懂算法:用常識解讀數據結構與算法
- Python深度學習入門:從零構建CNN和RNN