MySQL Programs


  1. Input can be validated in MySQL programs.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: B

    Input provided by the user can be validated. For instance, dates can be checked to make sure they conform to the format that MySQL expects, or certain fields can be filled in to check.


  1. With MySQL programs, input handling can be customized.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: B

    With mysql, raw SQL statements can be entered. With MySQL programs input methods can be provided for the user that are more intuitive and easier to be used. So input handling is customized.



  1. What performs administrative operations?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: D

    In MySQL, some distributions include a set of some client programs. ‘mysqladmin’ performs the administrative operations. ‘mysqlimport’ loads the data files into the tables.


  1. What loads data files into tables?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: A

    ‘mysqlimport’ loads the data files into the tables. In MySQL, some distributions include a set of some client programs. ‘mysqldump’ exports the table definitions and the contents.



  1. What exports table definitions and contents?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: C

    In MySQL, some distributions include a set of some client programs. ‘mysqldump’ exports the table definitions and the contents. ‘mysqladmin’ performs adminisitrative tasks.