Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

emma(1) [debian man page]

EMMA(1) 						      General Commands Manual							   EMMA(1)

NAME
emma - extendable MySQL managing assistant SYNOPSIS
emma [-h|--help] [-d|--debug] [-l output_log [-f|--flush]] DESCRIPTION
This manual page documents briefly the emma command ( Emma on Debian systems) emma is a graphical toolkit for MySQL database developers and administrators, it is the successor of yamysqlfront. Its main features are: * Dialogs to create/modify MySQL databases, tables and associated indexes * Result sets grouped in tabs * SQL editor: + Tabs + Built-in syntax highlighting + Table and field name tab-completion + Automatic SQL statement formatting * Export to CSV files * Multiple simultaneously opened MySQL connections OPTIONS
This program follows the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. -h, --help show help message -d, --debug output debug information on stdout -l, --log FILE append all output to a specified log file -f, --flush flush {stdout,log} after each write AUTHOR
emma was written by Florian Schmidt <flo@fastflo.de>. This manual page was written by Piotr Ozarowski <ozarow@gmail.com>, for the Debian project (but may be used by others). october 24, 2006 EMMA(1)

Check Out this Related Man Page

SQL::ReservedWords::MySQL(3pm)				User Contributed Perl Documentation			    SQL::ReservedWords::MySQL(3pm)

NAME
SQL::ReservedWords::MySQL - Reserved SQL words by MySQL SYNOPSIS
if ( SQL::ReservedWords::MySQL->is_reserved( $word ) ) { print "$word is a reserved MySQL word!"; } DESCRIPTION
Determine if words are reserved by MySQL. METHODS
is_reserved( $word ) Returns a boolean indicating if $word is reserved by either MySQL 3.2, 4.0, 4.1, 5.0 or 5.1. is_reserved_by_mysql3( $word ) Returns a boolean indicating if $word is reserved by MySQL 3.2. is_reserved_by_mysql4( $word ) Returns a boolean indicating if $word is reserved by either MySQL 4.0 or 4.1. is_reserved_by_mysql5( $word ) Returns a boolean indicating if $word is reserved by either MySQL 5.0 or 5.1. reserved_by( $word ) Returns a list with MySQL versions that reserves $word. words Returns a list with all reserved words. EXPORTS
Nothing by default. Following subroutines can be exported: is_reserved is_reserved_by_mysql3 is_reserved_by_mysql4 is_reserved_by_mysql5 reserved_by words SEE ALSO
SQL::ReservedWords <http://dev.mysql.com/doc/> AUTHOR
Christian Hansen "chansen@cpan.org" COPYRIGHT
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.8.8 2008-03-28 SQL::ReservedWords::MySQL(3pm)
Man Page

We Also Found This Discussion For You

1. Shell Programming and Scripting

Something wrong with while loop

Hi there, i've written a script to extract a portion of a MySQL database table and convert it to CSV and then to import it back as CSV to MySQL. Initially it worked without the while loop but after adding the while loop statement, i am getting the following error: ./export-csv-coordinates.sh:... (4 Replies)
Discussion started by: edge80
4 Replies