- Full Stack Web Development with Raspberry Pi 3
- Soham Kamani
- 131字
- 2021-07-15 17:10:28
Integrating the database into our application
The database is interfaced with the rest of the application through the server (yet another area where the server acts as the middleware). The server application will add, update, read, and delete data from the database through the use of queries.
All queries to the database can be classified under Create, Read, Update, or Delete operations, which are collectively referred to as CRUD.
In our application, the database will be running on another port in our Raspberry Pi machine. The application server will interact with the database through the local network.
It's important to note that the database is also a server, which occupies a port. This is why we sometimes call it the database server, while our main application runs on the application server.

推薦閱讀
- Cocos2d Cross-Platform Game Development Cookbook(Second Edition)
- MySQL數據庫管理實戰
- C語言程序設計案例教程(第2版)
- Getting started with Google Guava
- CMDB分步構建指南
- 自己動手實現Lua:虛擬機、編譯器和標準庫
- Visual Basic編程:從基礎到實踐(第2版)
- Mastering Apache Spark 2.x(Second Edition)
- 用戶體驗可視化指南
- Python編程基礎教程
- Java Web開發教程:基于Struts2+Hibernate+Spring
- Software Architecture with Python
- VMware vSphere Design Essentials
- jMonkeyEngine 3.0 Beginner’s Guide
- Python程序設計:基礎與實踐