Posts

Week 22

Image
 CST-363 Week 6 This is our sixth week in CST-363, also known as Introduction to Database Systems. Summary This week we read about integrating SQL into programs and other languages. We learned about some of  the differences between SQL and other languages and some of the ways to integrate SQL into a program, such as Embedded SQL and APIs. Then, we learned how to use an SQL API for Java called JDBC. Vocabulary Programming Languages Imperative Languages:  Contain control flow statements that determine the execution order of program steps. Two popular types of imperative languages are: Procedural Languages:  Composed of procedures, also called functions or subroutines. Most languages developed prior to 1990 are procedural. Ex: C and COBOL. Object-Oriented Languages:  Organize code into classes. A class combines variables and procedures into a single construct. Most languages developed since 1990 are object-oriented. Ex: Java, Python, and C++. Declarative Languages:...