Main > Free Download Search >

Free navicat mysql full version software for linux

navicat mysql full version

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3018
Navicat MySQL Manager for Linux 8.0.27

Navicat MySQL Manager for Linux 8.0.27


MySQL Navicat (MySQL Manager - a GUI for MySQL admin and development) more>> Navicat Manager is an ideal solution for MySQL administration and development. This is an all-inclusive mysql front end provides a powerful graphical interface for databases management and maintenance. Easy installation
and intuitive interface make it an irreplaceable tool for mysql on the web or your local desktop. Navicat supports all verions of MySQL and it lets you convert data to/ from MySQL, synchronizes and backups database in a snap through helpful wizards. Major features of Navicat full version include Visual Query Builder, Import/ Export, Report Builder, Backup/ Restore, SSH and HTTP Tunneling and Data Transfer. Navicat also supports to import data from ODBC, batch job scheduling (create schedule for Import/Export, Data Transfer and saved queries),
printing of table structure. It also includes a full featured graphical manager for setting the users and access privileges. Navicat version 8 supports Code Completion, Form View and email Notification Services, etc. Navicat is the number 1 MySQL database administration shareware in Download.com with over 350,000 downloads and 1,100,000 installations worldwide. Some of the users including Sony Music, Intel, Kodak, FedEx, KPMG Consulting, Ericsson,
Siemens AG, Yahoo!, NTT DoCoMo (Japan), Hitachi (Japan), Imation, Lexmark, Cisco Systems, RSA Security, Avis (Europe), U.S. Department of Energy, UPS, Disney, Oxford University, Harvard University, NASA Space Flight Center, MIT, Michigan State University, University of Michigan, ...
Navicat delivers a personal experience, simplifying the way you work. The program is also available for Windows and Mac OS X.
<<less
Download (21.9MB)
Added: 2009-04-15 License: Freeware Price: Free
231 downloads
Remote MySQL Query 1.0

Remote MySQL Query 1.0


Remote MySQL Query is a PHP class that can easily execute queries on a remote MySQL server using only HTTP. more>>
Remote MySQL Query is a PHP class that can easily execute queries on a remote MySQL server using only HTTP.

It works by accessing a PHP script on the remote web server that executes queries based on passed in URL parameters.

The client passes a secret key to the remote script to prevent unauthorized access.

The remote script passes back the results to the requesting client using XML to marshal the data.

The class parses the results XML data returned by the server script and returns an array.

It, also, retrieves (into class variables) the number of records returned by the query and the time the query took to execute.

The server script may be used to execute MySQL queries that can be retrieved by programs written in other languages besides PHP.

<<less
Download (MB)
Added: 2007-07-23 License: Freely Distributable Price:
828 downloads
Navicat MySQL database tool for Linux (Freeware) 8.0.29

Navicat MySQL database tool for Linux (Freeware) 8.0.29


Navicat MySQL Manager is a set of graphical database management and monitoring tools for MySQL. Navicat is easy-to-use and powerful. It supports backup/ restore, import/ export data and synchronize database. more>>

Navicat MySQL Manager is a set of graphical database management and monitoring tools for MySQL.

Major features

  1. This is an all-inclusive mysql front end provides a powerful graphical interface for databases management and maintenance.
  2. Easy installation and intuitive interface make it an irreplaceable tool for mysql on the web or your local desktop.
  3. Navicat supports all verions of MySQL and it lets you convert data to/ from MySQL, synchronizes and backups database in a snap through helpful wizards
  4. Major features of Navicat full version include Visual Query Builder, Import/ Export, Report Builder, Backup/ Restore, SSH and HTTP Tunneling and Data Transfer.
  5. Navicat also supports to import data from ODBC, batch job scheduling (create schedule for Import/Export, Data Transfer and saved queries),
    printing of table structure. It also includes a full featured graphical manager for setting the users and access privileges
  6. Navicat version 8 supports Code Completion, Form View and email Notification Services, etc.
  7. Navicat is the number 1 MySQL database administration shareware in Download.com with over 350,000 downloads and 1,100,000 installations worldwide. Some of the users including Sony Music, Intel, Kodak, FedEx, KPMG Consulting, Ericsson,
    Siemens AG, Yahoo!, NTT DoCoMo (Japan), Hitachi (Japan), Imation, Lexmark, Cisco Systems, RSA Security, Avis (Europe), U.S. Department of Energy, UPS, Disney, Oxford University, Harvard University, NASA Space Flight Center, MIT, Michigan State University, University of Michigan, ...
  8. Navicat delivers a personal experience, simplifying the way you work. The program is also available for Windows and Mac OS X.
<<less
Download (0.00KB)
Added: 2009-04-04 License: Freeware Price: $0
210 downloads
Qt MySQL Budget 0.10

Qt MySQL Budget 0.10


Qt MySQL Budget is a GUI that allows the creation of a personal budget. more>>
Qt MySQL Budget project is a GUI that allows the creation of a personal budget.

The basic layout is a month selector, a tab for your allocations (budget), a tab for your expenses, and a tab showing the totals.

It has a very simple design allowing the quick creation and updating of budgets to help individuals plot and track their monthly sending.

<<less
Download (0.30MB)
Added: 2006-01-31 License: GPL (GNU General Public License) Price:
1372 downloads
Amarok Full Screen 0.5

Amarok Full Screen 0.5


Amarok Full Screen provides a full screen front end for Amarok. more>>
Amarok Full Screen provides a full screen front end for Amarok.

The look can be changed by custom THEMES.

<<less
Download (0.20MB)
Added: 2007-03-19 License: GPL (GNU General Public License) Price:
961 downloads
MySQL Global User Variables UDF 1.0

MySQL Global User Variables UDF 1.0


MySQL Global User Variables UDF is a MySQL extension to store persistent variables. more>>
MySQL Global User Variables UDF is a MySQL extension to store persistent variables.

This shared library adds simple user functions to MySQL in order to keep persistent shared variables in memory. These variables and their values are available to all clients. Any data can be stored into these persistent variables, including BLOBs. Since updates are atomic and way faster than MEMORY tables, this is an easy and efficient way to handle counters and sequences.

Usage:

Storing a value

An unlimited number of user variables can be created, as long as memory is available.
The GLOBAL_STORE(, ) stores a new shared global variable.

Examples:

mysql> DO GLOBAL_STORE("online_users", 42);
mysql> DO GLOBAL_STORE("secret_key", "pajfUyfnd");

The GLOBAL_STORE() function always returns 1 unless an error occurred.

Fetching a value

Reading the value of a variable is the job of the GLOBAL_GET() function.
The value is returned, or NULL is the variable is undefined.

Example:

mysql> SELECT GLOBAL_GET("online_users;);
42

mysql> SELECT id FROM pxs WHERE secret_key = GLOBAL_GET("secret_key");
1

Atomic increments

A single function call can read the previous value, add an integer (that can be negative), and store the new value into the variable.

The function is GLOBAL_ADD(, ) and the return value is the new value of the variable.
Updates are always atomic, if the old value is 18 and you add 1, you will always get back 19.

Example:

mysql> DO GLOBAL_ADD("online_users", 1);
mysql> SELECT GLOBAL_ADD("online_users", -4);
39

If the value of a variable was a string, the new value is the increment:

mysql> SELECT GLOBAL_ADD("secret_key", 12);
12

Adding a value to an undefined variable returns NULL.
A handy variant is GLOBAL_ADDP(, ). GLOBAL_ADDP() is similar to GLOBAL_ADD() but returns the PREVIOUS value of the variable instead of the new one.

Example:

mysql> DO GLOBAL_SET("xxx", 10);
mysql> SELECT GLOBAL_ADDP("xxx", 1);
10
mysql> SELECT GLOBAL_ADDP("xxx", 1);
11

Installation:

On most systems, compiling and installing the library should be as simple as typing (as root):

make install

The shared library is installed as /usr/local/lib/udf_global_user_variables.so

If the base directory of your MySQL installation is not in /usr/local, just type:

make

and then copy udf_global_user_variables.so to the right location for UDFs on your system (maybe /usr/lib/).

The name of a variable is limited to 256 bytes. If that limit is too low for your specific application, just edit the MAX_NAME_LENGTH variable on top of the .c file and reinstall. Variable names can contain binary characters.

Values are limited to 65536 bytes. If that limit is too low for you, edit the MAX_VALUE_LENGTH variable and reinstall.
<<less
Download (0.004MB)
Added: 2007-03-19 License: GPL (GNU General Public License) Price:
951 downloads
Navicat MySQL administrator Manager for Linux (Freeware available) 8.0.28

Navicat MySQL administrator Manager for Linux (Freeware available) 8.0.28


Navicat MySQL Manager is a set of graphical database management and monitoring tools for MySQL. Navicat is easy-to-use and powerful. It supports backup/ restore, import/ export data and synchronize da more>>

Navicat Manager is an ideal solution for MySQL administration and development. This is an all-inclusive mysql front end provides a powerful graphical interface for databases management and maintenance. Easy installation
and intuitive interface make it an irreplaceable tool for mysql on the web or your local desktop. Navicat supports all verions of MySQL and it lets you convert data to/ from MySQL, synchronizes and backups database in a snap through helpful wizards. Major features of Navicat full version include Visual Query Builder, Import/ Export, Report Builder, Backup/ Restore, SSH and HTTP Tunneling and Data Transfer. Navicat also supports to import data from ODBC, batch job scheduling (create schedule for Import/Export, Data Transfer and saved queries),
printing of table structure. It also includes a full featured graphical manager for setting the users and access privileges. Navicat version 8 supports Code Completion, Form View and email Notification Services, etc. Navicat is the number 1 MySQL database administration shareware in Download.com with over 350,000 downloads and 1,100,000 installations worldwide. Some of the users including Sony Music, Intel, Kodak, FedEx, KPMG Consulting, Ericsson,
Siemens AG, Yahoo!, NTT DoCoMo (Japan), Hitachi (Japan), Imation, Lexmark, Cisco Systems, RSA Security, Avis (Europe), U.S. Department of Energy, UPS, Disney, Oxford University, Harvard University, NASA Space Flight Center, MIT, Michigan State University, University of Michigan, ...
Navicat delivers a personal experience, simplifying the way you work. The program is also available for Windows and Mac OS X.

<<less
Download (0.00KB)
Added: 2009-04-14 License: Freeware Price: $0
195 downloads
 
Other version of Navicat MySQL administrator Manager for Linux
Navicat MySQL administrator Manager for Linux (Freeware available) 8.0.27Navicat MySQL Manager is a set of graphical database management and monitoring tools for MySQL ... Major features of Navicat full version include Visual Query Builder, Import/ Export, Report
Price: $0
License:Freeware
Download (0.00KB)
195 downloads
Added: 2009-04-27
Navicat MySQL administrator Manager for Linux (Freeware available) 8.0.26Navicat Manager is an ideal solution for MySQL ... Major features of Navicat full version include Visual Query Builder, Import/ Export, Report
Price: $0.00
License:Freeware
Download (20480K)
196 downloads
Added: 2009-04-16
MySQL table patcher 1.6.2

MySQL table patcher 1.6.2


MySQL table patcher is a patch that reads table creation file (tables.sql) and compares it to what mysqldump gives. more>>
MySQL table patcher is a patch that reads table creation file (tables.sql) and compares it to what mysqldump gives. It creates SQL clauses to update the database to match the creation file.

<<less
Download (1.9MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1179 downloads
Brim Full 2.0.0

Brim Full 2.0.0


Brim is an application suite that allows you to manage all your personal items online. more>>
Brim is an application suite that allows you to manage all your personal items online. No need to syncronize your bookmarks and favorites and contacts, you can now keep them well-secured online in one single place.
Additionally, Brim provides a calendar, a task manager, notes, a password manager etc. all behind a single logon.
Brim is an opensource Webbased Information Manager, formerly known as Booby, with support for bookmarks, calendar, contacts, notes, news, passwords and tasks and more.
Brim is written in PHP, has an underlying Model-View-Controller (MVC - Model II) framework based on items with a hierarchical relationship, has support for internationlization (i18n) with over 15 translations available, has multiple themes and is database independant. In short; a multi-thingy something.
Main features:
- Support for unlimited users
- Tested on IE5, IE6, Opera 7.5, Firefox 1.0, Netscape/Mozilla and more
- Plugin support (bookmarks, calendar events, news items, notes, tasks and a webtools plugin)
- Support for unlimited items per plugin
- Support for multiple languages:
English
Czech
German
Esperanto
Spanish
French
Hebrew
Italian
Dutch
Norwegian
Polish
Portuguese Brazilian
Portuguese
Russian
Swedish
Tradition Chinese
- Support for multiple themes (check the demo site!)
- Support to publish items (public vs. private items)
Enhancements:
- This release features a totally reworked user-interface with lots of ajax features.
<<less
Download (MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
921 downloads
Gtk+ MySQL Command Center 0.2.6

Gtk+ MySQL Command Center 0.2.6


Gtk+ MySQL Command Center is a GUI client for MySQL databases. more>>
Gtk+ MySQL Command Center is a GUI client for MySQL databases.
Gtk+ MySQL Command Center will help you to use your MySQL servers, do requests on them, manage their configuration (users, process, etc.), dump datas and structure and more.
You dont need GNOME to use it.
Main features:
- Use gtk+ only (doesnt need Gnome)
- Manage a mysql server list (Store in a XML file)
- SQL Query window (with query duplication capabilities)
- Edit value directly in the results table
- Multi-window system ... not all request in the same window
- Dump SQL table|database|serveur|request into SQL, XML and CSV files
<<less
Download (0.26MB)
Added: 2006-09-26 License: GPL (GNU General Public License) Price:
1128 downloads
MySQL Query Browser 1.1.18

MySQL Query Browser 1.1.18


MySQL Query Browser is a database querying tool. more>>
MySQL Query Browser is a database querying tool.

MySQL Query Browser combines the simplicity of a Web-browser-like interface with powerful features like multiple result sets on tab sheets, query history, storing query "bookmarks", editing and comparing resultsets, SQL script debugging, and more.

MySQL Query Browser is available under the MySQL AB "dual licensing" model. Under this model, users may choose to use MySQL products under the free software/opensource GNU General Public License (commonly known as the "GPL") or under a commercial license.
<<less
Download (3.4MB)
Added: 2006-02-14 License: GPL (GNU General Public License) Price:
810 downloads
MySQL for Linux 6.0.0

MySQL for Linux 6.0.0


MySQL - Multi-user and robust SQL database server more>> MySQL - Multi-user and robust SQL database server. The worlds most popular open source database
MySQL is a very fast, multi-user, multi-threaded and robust SQL (Structured Query Language) database server. The worlds most popular open source database.
MySQL is an attractive alternative to higher-cost, more complex database technology. Its award-winning speed, scalability and reliability make it the right choice for corporate IT departments, Web developers and packaged software vendors
<<less
Download (67.68MB)
Added: 2009-04-05 License: Freeware Price: Free
204 downloads
 
Other version of MySQL for Linux
MySQL for Linux 5.1.16source database MySQL is a very fast, multi-user, multi-threaded and robust SQL (Structured ... MySQL is an attractive alternative to higher-cost, more complex database technology. Its
License:Freeware
Download (57.70MB)
204 downloads
Added: 2009-04-04
License:Freeware
Download (68.46MB)
204 downloads
Added: 2009-04-03
License:Freeware
Download (44.82MB)
188 downloads
Added: 2009-04-21
License:Freeware
Download (31.84MB)
186 downloads
Added: 2009-04-23
Mysql Assistant 1.1.1

Mysql Assistant 1.1.1


Mysql Assistant is a MySQL viewer. more>>
Mysql Assistant is a MySQL viewer. Mysql Assistant requires Ruby-Gtk2 and MySQL/Ruby.

Myassistant is a MySQL viewer using, Ruby, Ruby-Gtk2, MySQL/Ruby and developed on ruby-1.8.4, Mysql-5.0.16, mysql-ruby-2.7, ruby-gtk2-0.14.1.

Currently 3 APIs are provided for MySQL, MySQL/Ruby, Ruby/MySQL, and DBI.
These are 3 different APIs, Please install proper one.

Installation:

untar package anywhere you want.

Security Issue

Myassistant create ".mydb" file which includes "Mysql server name","user name",
"password","database name" with chmod 600 on your home directory.
It could be your security hole, so please notice that.

Fonts

Currently default font is "Sans 12". If you want change it, edit row number 91.

If you have any questions or problems, please let me know.

<<less
Download (0.003MB)
Added: 2006-11-05 License: GPL (GNU General Public License) Price:
1098 downloads
netacct-mysql 0.78

netacct-mysql 0.78


Netacct-mysql is modified version of traffic accounting daemon net-acct which stores collected data in MySQL. more>>
Netacct-mysql is modified version of traffic accounting daemon net-acct which stores collected data in MySQL. It supports writing accounting information in a single line in MySQL per day for every IP (mrta style).
Netacct functions by analogy with sniffer, i.e. it keeps track of all the traffic passing through the network interfaces assigned by the configuration file. Data are stored in the memory and periodically saved in the database. The default data save period is 300 seconds (see option "flush" in the config file).
The application is used for accounting of the network traffic passed through your router/gateway. It is based on the libpcap library and functions as a userspace daemon. Options for dividing the network traffic into 4 categories:
- international
- peering
- direct
- local
The traffic accounts are saved in a database, and for the time being MySQL and Oracle are supported. As libpcap is used for gathering the network data the application runs (for the moment) on the following operating systems:
- Linux
- FreeBSD
- OpenBSD
- Solaris
For more detailed information regarding a particular OS, please read the FAQ file.
Enhancements:
- netacct.h:
- process.c:
- naccttab.sample:
- fixed disable fields in config file, now it works does not write some fields in dump file - fixed
<<less
Download (0.044MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
700 downloads
SQLyog Free Edition 5.18

SQLyog Free Edition 5.18


SQLyog is an easy to use tool that lets you manage your MySQL database anywhere in the world. more>>
SQLyog is an easy to use tool that lets you manage your MySQL database anywhere in the world. SQLyog is a tool that allows you manage MySQL database.
Main features:
Developer / User Productivity
- HTML Schema Documentation
- Shortcuts to quickly generate SQL statements and paste object names
- Learn MySQL by looking at the SQL generated by SQLyog
- Multi-tab Query Editor and Result-set Editor
- Multiple Query Execution
- Multi-threaded Query execution with option to stop long running queries
- SQL Templates
- Excel-style grid interface to view/update resultsets
- Multi-format Blob editor
- View data in Grid/Text Mode
- ResultSet/Data Export to CSV/XML/HTML
- Full Support from 3.23.38 to the latest 5.x
- Support for all MySQL table handlers
- Excel friendly resultsets/table-data export to clipboard/file
- Dialogless table and resultset editor
DBA Productivity
- Restoring / Importing large SQL dumps
- MySQL 5.x objects support
- User Management
- Managing hosted MySQL
- Connection Manager
- Index Management
- Relationship/Foreign Key Manager
- Reorder Columns
- Copy objects to another Host with single click
- Table diagnostics
- Flush Tools
- Object Browser
- Creating/dropping database
- Optimized for managing Hosted MySQL
- Profiling
- Multiple database connections
Technology
- Turbo Speed MySQL Management. Uses native MySQL C API - the fastest way to communicate with MySQL server
- 100% keyboard friendly
- Small compact binary
- Minimal use of Registry - easy migration of User Preferences by dragging and dropping config files.
- Non-cluttered look and feel, ability to show/hide panes
<<less
Download (0.96MB)
Added: 2006-10-17 License: Freeware Price:
5721 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5