课程: Learning JDBC

免费学习该课程!

今天就开通帐号,24,700 门业界名师课程任您挑!

Create, read, update, and delete (CRUD)

Create, read, update, and delete (CRUD)

课程: Learning JDBC

Create, read, update, and delete (CRUD)

- [Instructor] The acronym CRUD is thrown around quite a bit with developers, especially API developers, and it has a very specific meaning, and that meaning really addresses database operations and not APIs, even though I myself am guilty of pushing it forward. So, let's talk a little bit about what CRUD means. So, what do CRUDders CRUD? CRUD is an acronym for the four main functions you do to data in a database. You create, you read, you update, and you delete. This is all part of what is called data manipulation language, or DML. Now, there is more to DML than just insert, update, select, and delete. But, those CRUD operations are contained within DML. Most SQL statements are an extension of these four main functions, at least the SQL statements that developers most often use. So I want to talk a little bit about some thoughts around what you can do to more effectively write JDBC code. You have to learn SQL. SQL is core to being an API developer dealing with databases. And though…

内容