Download IT360 12 week Exam Review Sheet 2. PHP - general

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Microsoft Access wikipedia , lookup

Oracle Database wikipedia , lookup

Entity–attribute–value model wikipedia , lookup

Open Database Connectivity wikipedia , lookup

SQL wikipedia , lookup

Ingres (database) wikipedia , lookup

Extensible Storage Engine wikipedia , lookup

Database wikipedia , lookup

Concurrency control wikipedia , lookup

Microsoft SQL Server wikipedia , lookup

Microsoft Jet Database Engine wikipedia , lookup

Relational model wikipedia , lookup

ContactPoint wikipedia , lookup

Clusterpoint wikipedia , lookup

Database model wikipedia , lookup

PL/SQL wikipedia , lookup

Transcript
IT360 12 week Exam Review Sheet
1. SQL CREATE, ALTER, DROP, INSERT, UPDATE, DELETE, SELECT
2. PHP - general
a. variables, constants, arrays (numerically indexed arrays and associative
arrays)
b. control statements (if, for, foreach, while, …)
c. files
d. functions
e. objects/classes, inheritance
3. PHP - Work with MySQL
 Connect to a database
 Query
 process results
 close connection
4. Session variables
5. Stored Procedures and Triggers
a. A stored procedure is a program that performs some common action on
database data and is stored in the database.
b. Advantages of stored procedures
c. Write a stored procedure
d. A trigger is a stored program that is attached to a table or view.
e. Type of triggers (before/after, insert/update/delete)
f. Uses for triggers
g. Write a trigger
h. Differences between triggers and stored procedures