-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMySQL PROGRAMS - (A) - basic.sql
More file actions
29 lines (22 loc) · 1010 Bytes
/
MySQL PROGRAMS - (A) - basic.sql
File metadata and controls
29 lines (22 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
!!BASIC - MySQL-BASED PROGRAMS - basic!!
> This chapter discusses how to use MySQL from within the context of a
general-purpose programming language
> These operations include:
+) connecting to the MySQL server
+) executing statements
+) retrieving the results
*/
/*
MySQL CLIENT API ARCHITECTORE
> MySQL programming interface covered in this book uses a two-level architecture
• The upper level provides database-independent methods that implement database
access in a portable way that’s the same whether you use MySQL, PostgreSQL, Oracle,
or whatever.
• The lower level consists of a set of drivers, each of which implements the details
for a single database system.
> This two-level architecture enables application programs to use an abstract interface
not tied to details specific to any particular database server.
>> This enhances portability of your programs: to use a different database system,
just select a different lower-level driver.
*/