MySQL Functions
- Converting a client/server application to embedded server is difficult.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
Writing an application that uses the embedded server is different from writing one that operates in a client/server context. A program that is written as a client/server application can easily be converted to use the embedded server.
- The option that executes all SQL statements in a SQL script irrespective of the number of errors is _______________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
If SQL queries in a file are run using mysql in batch mode, mysql either quits after the first error. If the –force option is specified all the queries are executed indiscriminately.
- The clause that is used to display information that matches a given pattern is _____________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
The ‘LIKE’ clause filters information that match a given pattern. ‘WHERE’ clause selects information that is specified by a condition. ‘IS’ is used to match the exact condition specified.
- The library file that contains various portability macros and definitions is ______________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
The ‘my_sys.h’ header file contains a variety of portability macros and definitions required for structures and functions. These structures and functions are used by the client library.
- The header that should be included first is ________________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
The file ‘my_global.h’ takes care of including several other header files that are likely to be generally useful, like ‘stdio.h’. It also includes Windows compatibility information.