~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysql.cc

More naming changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1143
1143
  window_resize(0);
1144
1144
#endif
1145
1145
 
1146
 
  put_info("Welcome to the MySQL monitor.  Commands end with ; or \\g.",
 
1146
  put_info("Welcome to the Drizzle client..  Commands end with ; or \\g.",
1147
1147
           INFO_INFO);
1148
1148
  sprintf((char*) glob_buffer.ptr(),
1149
 
          "Your MySQL connection id is %lu\nServer version: %s\n",
 
1149
          "Your Drizzle connection id is %lu\nServer version: %s\n",
1150
1150
          mysql_thread_id(&mysql), server_version_string(&mysql));
1151
1151
  put_info((char*) glob_buffer.ptr(),INFO_INFO);
1152
1152
 
2404
2404
    cmd++;
2405
2405
  }
2406
2406
 
2407
 
  /* hash MySQL functions (to be implemented) */
 
2407
  /* hash Drizzle functions (to be implemented) */
2408
2408
 
2409
2409
  /* hash all database names */
2410
2410
  if (mysql_query(&mysql,"show databases") == 0)
2709
2709
          return com_server_help(buffer,line,help_arg);
2710
2710
  }
2711
2711
 
2712
 
  put_info("\nFor information about MySQL products and services, visit:\n"
2713
 
           "   http://www.mysql.com/\n"
2714
 
           "For developer information, including the MySQL Reference Manual, "
2715
 
           "visit:\n"
2716
 
           "   http://dev.mysql.com/\n"
2717
 
           "To buy MySQL Network Support, training, or other products, visit:\n"
2718
 
           "   https://shop.mysql.com/\n", INFO_INFO);
2719
 
  put_info("List of all MySQL commands:", INFO_INFO);
 
2712
  put_info("List of all Drizzle commands:", INFO_INFO);
2720
2713
  if (!named_cmds)
2721
2714
    put_info("Note that all text commands must be first on line and end with ';'",INFO_INFO);
2722
2715
  for (i = 0; commands[i].name; i++)