MySQL is a multithreaded, multi-user, SQL Database Management System (DBMS).
Features:
* A broad subset of ANSI SQL 99, as well as extensions
* Cross-platform support
* Stored procedures
* Triggers
* Cursors
* updatable Views
* True VARCHAR support
* INFORMATION_SCHEMA
* Strict mode
* X/Open XA distributed transaction processing (DTP) support; two phase commit as part of this, using Oracle's InnoDB engine
* Independent storage engines (MyISAM for read speed, InnoDB for transactions and referential integrity, Archive for storing historical data in little space)
* Transactions with the InnoDB, BDB and Cluster storage engines; savepoints with InnoDB
* SSL support
* Query caching
* Sub-SELECTs (i.e. nested SELECTs)
* Replication with one master per slave, many slaves per master, no automatic support for multiple masters per slave.
* Full-text indexing and searching using MyISAM engine
* Embedded database library
* Full Unicode support
* ACID compliance using the InnoDB, BDB and Cluster engines
* Shared-nothing clustering through MySQL Cluster
- File Size:38.33M
- License:Open Source
- Released:Sep 04, 2009
- OS Support:Windows 9x/2000/XP/2003/Vista
- Plugins:None
- Publisher:MySQL AB
* The InnoDB Plugin is included in MySQL releases, in addition to the built-in version of InnoDB that has been included in previous releases. This version of the InnoDB Plugin is 1.0.4 and is considered of Beta quality.
* Replication: With statement-based logging (SBL), repeatedly calling statements that are unsafe for SBL caused a warning message to be written to the error log for each statement, and there was no way to disable this behavior. Now the server logs messages about statements that are unsafe for statement-based logging only if the log_warnings variable is greater than 0. (Bug#46265)
* The undocumented TRANSACTIONAL and PAGE_CHECKSUM keywords were removed from the grammar. (Bug#45829)
* Previously, SELECT ... INTO OUTFILE dumped column values without character set conversion, which could produce data files that cannot be imported without error if different columns used different character sets. A consequence of this is that mysqldump ignored the --default-character-set option if the --tab option was given (which causes SELECT ... INTO OUTFILE to be used to dump data.)
INTO OUTFILE now can be followed by a CHARACTER SET clause indicating the character set to which dumped values should be converted. Also, mysqldump adds a CHARACTER SET clause to the SELECT ... INTO OUTFILE statement used to dump data, so that --default-character-set is no longer ignored if --tab is given.
Other changes are that SELECT ... INTO OUTFILE enforces that ENCLOSED BY and ESCAPED BY arguments must be a single character, and SELECT ... INTO OUTFILE and LOAD DATA INFILE produce warnings if non-ASCII field or line separators are specified. (Bug#30946)
* The MySQL euckr character set now can store extended codes [81...FE][41..5A,61..7A,81..FE], which makes euckr compatible with the Microsoft cp949 character set.
#Bugs fixed:
* Partitioning: Attempting to create a table using an invalid or inconsistent subpartition definition caused the server to crash. An example of such a statement is shown here:
CREATE TABLE t2 (s1 INT, s2 INT)
PARTITION BY LIST (s1) SUBPARTITION BY HASH (s2) SUBPARTITIONS 1
(
PARTITION p1 VALUES IN (1),
PARTITION p2 VALUES IN (2) (SUBPARTITION p3)
);
(Bug#46354)
* Partitioning: When using a debug build of MySQL, if a query against a partitioned table having an index on one or more DOUBLE columns used that index, the server failed with an assertion. (Bug#45816)
* Partitioning: A failed RENAME TABLE operation on a table with user-defined partitioning left the table in an unusable state, due to only some of the table files having been renamed. (Bug#30102)
* Replication: When a statement that changes a non-transactional table failed, the transactional cache was flushed, causing a mismatch between the execution and logging histories. Now we avoid flushing the transactional cache unless a COMMIT or ROLLBACK is issued. (Bug#46129)
* Replication: The internal function get_master_version_and_clock() (defined in sql/slave.cc) ignored errors and passed directly when queries failed, or when queries succeeded but the result retrieved was empty. Now this function tries to reconnect the master if a query fails due to transient network problems, and to fail otherwise. The I/O thread now prints a warning if the some system variables do not exist on master (in the event the master is a very old version of MySQQL, compared to the slave.) (Bug#45214)
* Replication: When using the MIXED logging format, after creating a temporary table and performing an update that switched the logging format to ROW, the format switch persisted following the update. This prevented any subsequent DDL statements on temporary tables from being written to the binary log until the temporary table was dropped. (Bug#43046) See also Bug#40013.
This regression was introduced by Bug#20499.
* Replication: If the --log-bin-trust-function-creators option is not enabled, CREATE FUNCTION requires one of the modifiers DETERMINISTIC, NO SQL, or READS SQL DATA. When using statement-based mode, the execution of a stored function should follow the same rules; however, only functions defined with DETERMINSTIC could actually be executed. In addition, the wrong error was generated (ER_BINLOG_ROW_RBR_TO_SBR instead of ER_BINLOG_UNSAFE_ROUTINE).
Now execution of stored functions is compatible with creation in this regard; when a stored function without one of the modifiers above is executed in STATEMENT mode, the correct error is raised, and functions defined using NO SQL, READS SQL DATA, or both (that is, without using DETERMINSTIC) can be excuted. (Bug#41166)
* The test suite was missing from RPM packages. (Bug#46834)
* Incorrect index optimization could lead to incorrect results or server crashes. (Bug#46454)
* The server printed warnings at startup about adjusting the value of the max_join_size system variable. (These were harmless, but might be seen by users as significant.) (Bug#46385)
* After an error such as a table-full condition, INSERT IGNORE could cause an assertion failure for debug builds. (Bug#46075)
* An optimization that moved an item from a subquery to an outer query could cause a server crash. (Bug#46051)
* Several Valgrind warnings were corrected. (Bug#46003, Bug#46034, Bug#46042)
* CREATE TABLE ... SELECT could cause a server crash if no default database was selected. (Bug#45998)
* For problems reading SSL files during SSL initialization, the server wrote error messages to stderr rather than to the error log. (Bug#45770)
* The vendor name change from MySQL AB to Sun Microsystems, Inc. in RPM packages was not handled gracefully when upgrading MySQL using an RPM package. (Bug#45534)
* A Windows Installation using the GUI installer would fail with:
MySQL Server 5.1 Setup Wizard ended prematurely
The wizard was interrupted before MySQL Server 5.1. could be completely installed. Your system has not been modified. To complete installation at another time, please run setup again. Click Finish to exit the wizard. This was due to an step in the MSI installer that could fail to execute correctly on some environments. (Bug#45418)
* Invalid memory reads could occur using the compressed client/server protocol. (Bug#45031)
* The mysql_real_connect() C API function only attempted to connect to the first IP address returned for a hostname. This could be a problem if a hostname mapped to multiple IP address and the server was not bound to the first one returned. Now mysql_real_connect() attempts to connect to all IPv4/6 addresses that a domain name maps to. (Bug#45017)
* Invalid input could cause invalid memory reads by the parser. (Bug#45010)
* Some files in an AIX tar file distribution unpacked with incorrect permissions. (Bug#44647)
* For debug builds, executing a stored procedure as a prepared statement could sometimes cause an assertion failure. (Bug#44521)
* Using mysql_stmt_execute() to call a stored procedure could cause a server crash. (Bug#44495)
* Creating a new instance after previously removing an instance would fail to complete the installation properly because the security settings could not be applied correctly. (Bug#44428)
* mysqlslap ignored the --csv option if it was given without an argument. (Bug#44412)
* Enabling the event scheduler from within the file specified by --init-file caused a server crash. (Bug#43587)
* The server did not always check the return value of calls to the hash_init() function. (Bug#43572)
* The table cache lock (LOCK_open) is now an adaptive mutex, which should improve performance in workloads where this lock is heavily contended. (Bug#43435)
* mysqladmin --count=X --sleep=Y incorrectly delayed Y seconds after the last iteration before exiting. (Bug#42639)
* A test for stack growth failed on some platforms, leading to server crashes. (Bug#42213)
* mysqladmin did not have enough space allocated for tracking all variables when using --vertical or --relative with extended-status. (Bug#40395)
* Partitioning a log table caused a server crash. (Bug#40281)
* When using quick access methods to search for rows in UPDATE and DELETE statements, there was no check whether a fatal error had already been sent to the client while evaluating the quick condition. Consequently, a false OK (following the error) was sent to the client, causing the error to be incorrectly transformed into a warning. (Bug#40113)
* SHOW PROCESSLIST could access freed memory of a stored procedure run in a concurrent session. (Bug#38816)
* During installation on Windows, the MySQL Instance Configuration Wizard window could be opened at a size too small to be usable. (Bug#38723)
* make_binary_distribution did not always generate correct distribution names. (Bug#37808)
* The server crashed when executing a prepared statement containing a duplicated MATCH() function call in the select list and ORDER BY clause; for example, SELECT MATCH(a) AGAINST('test') FROM t1 ORDER BY MATCH(a) AGAINST('test'). (Bug#37740)
* The output of mysqldump --tab for views included a DROP TABLE statement without the IF EXISTS qualifier. (Bug#37377)
* mysql_upgrade silently ignored the --basedir and --datadir options, which it accepts for backward compatibility. Now it prints a warning. (Bug#36558)
* mysqlimport was not always compiled correctly to enable thread support, which is required for the --use-threads option. (Bug#32991)
* mysqlcheck failed to fix table names when the --fix-table-names and --all-in-1 options were both specified. (Bug#31821)
* If the MySQL server was killed without the PID file being removed, attempts to stop the server with mysql.server stop waited 900 seconds before giving up. (Bug#31785)
* When performing an installation on Windows using the GUI installer, the installer would fail to wait long enough during installation for the MySQL service to be installed, which would cause the installation to fail and may cause security settings, such as the root password to not be applied correctly. (Bug#30525)
* mysql included extra spaces at the end of some result set lines. (Bug#29622)
* The mysql client inconsistently handled NUL bytes in column data in various output formats. (Bug#28203)
* mysqlimport did not correctly quote and escape table identifiers and file names. (Bug#28071)
* When installing the Windows service, using quotes around command-line configuration parameters could cause the quotes to incorrectly placed around the entire command-line option, and not just the value. (Bug#27535)
* If the mysql client was built with the readline library and the .inputrc file mapped Space to the magic-space function, it became impossible to enter spaces. (Bug#27439)
* If InnoDB reached its limit on the number of concurrent transactions (1023), it wrote a descriptive message to the error log but returned a misleading error message to the client, or an assertion failure occurred. (Bug#18828)
Download here
Download MySQL from another mirror
AOL AIM Triton is the next generation release of AOL Instant Messenger. It is an all new user experience with an elegant, tabbed look and feel.
New 'Quicknote' feature replaces the initial IM window to provide a snapshot of known contact information about that buddy and give users three choices: launching an IM session, launching an AOL Talk session or sending a mobile text message to a cellular user.
The tabbed messaging interface helps users easily transition from text to mobile instant messaging or AOL Talk, and will eventually enable users to launch video IM sessions, share files or images and invite Buddies to play games with one click.
A new 'IM Catcher' corrals all messages into a single interface to help users effectively screen and manage their IM sessions with an unlimited number of Buddies.
- File Size:7.74M
- License:Freeware
- Released:Aug 22, 2009
- OS Support:Windows 2000/XP/2003/Vista/XP64/Vista64
- Plugins:None
- Publisher:America Online Inc
* Client became slow and starts lagging/hanging after using the client for a while
* New Buddy Icon was not displayed anywhere on local client until next sign on
* Photo status was not visible to pre 7.0 users
* Using a ~ in text status would result in photo status not be able to be uploaded
* WeeMee wallpapers were not working properly.
* Lifestream count was not accurate when signing off and back on.
* Invisible/Available icons get reversed on State menu if you are signed on at 2 locations and are toggling Invisible mode on the other location.
* Systray icon did not show that you were invisible if you signed on in that state.
* Buddy Icon no longer disappears from IM window when closing/reopening IM while in Video/Talk sessions
* Other minor issues
Download here
Download AIM from Another mirror
Digsby, IM, email and Social networks in one easy to use application.
Instant Messaging - digsby is a multiprotocol IM client that lets you chat with all your friends on AIM, MSN, Yahoo, ICQ, Google Talk, and Jabber with one simple to manage buddy list.
Email Notifications - digsby is an email notification tool that alerts you of new email and lets you perform actions such as 'Delete' or 'Report Spam' with just one click.
Social Networking - digsby is a social networking tool that alerts you of events like new messages and gives you a live Newsfeed of what your friends are up to.
Version 38 onwards is a stub installer that includes numerous toolbars etc., we recommend you do not install these.
- File Size:3.94M
- License:Freeware
- Released:Aug 27, 2009
- OS Support:Windows XP/2003/Vista
- Plugins:Unknown
- Publisher:dotSyntax
* Fixed a bug that caused Digsby to not show the Facebook Chat buddy list due to a protocol change
* Fixed a bug that caused Digsby to not log in to LinkedIn due to a protocol change
Download here
Download Digsby from Another mirror
Introducing MailWasher, a leader in anti spam software, the easiest way to check and manage your e-mails before you download them.
MailWasher is free to use and won't ever expire.
Use this powerful anti spam software, a reliable spam blocker, that will effectively stop email spam. Discover the safe way to stop unwanted e-mails before they get to your computer.
No gimmicks here, it is so easy to set up and use that you'll be managing your email like a pro in seconds. It can even be used as an effective privacy tool.
- Delete unwanted e-mails before you download the whole message.
- Blacklist any e-mails you bounce back get their senders details put on the blacklist for easy removal if they come back.
- Add your friends email addresses to MailWasher and they will always be recognised. You can even hide your friends from the screen so the spam is easy to recognise.
- Easily preview the message in your email to see what the sender has to say before downloading it. Just double click on the message.
- Bounce back unwanted e-mails so it looks as if your email address is not valid.
- File Size:8.66M
- License:Freeware
- Released:Jun 20, 2009
- OS Support:Windows 9x/2000/XP/2003/XP64
- Plugins:None
- Publisher:MailWasher
Download MailWasher from another mirror
Spamihilator works between your E-Mail client and the Internet and examines every incoming E-Mail. Useless spam mails (Junk) will be filtered out. This process runs completely in the background.
The new Learning Filter (Bayesian Filter) uses the rules of Thomas Bayes (English mathematician, 18th century) and calculates a certain Spam-Probability for every E-Mail. You can train this filter! So it will know your messages even better than you. Hence the recognition rate will continuously increase.
In addition Spamihilator uses a Word-Filter, that searches messages for known keywords.
Of course, Spamihilator supports Plugins. These useful additional filters protect your system against annoying spam mails.
The program works with almost every E-Mail client, such as Outlook 2000/XP/2003/Express, Eudora, Mozilla, Netscape, IncrediMail, Pegasus Mail, Phoenix Mail, Opera, etc...
- File Size:1.86M
- License:Freeware
- Released:Dec 24, 2008
- Downloads:736 (All versions: 1880)
- OS Support:Windows (All Versions)
- Plugins:None
- Publisher:Michel Kramer
* More shortcut keys have been added.
* Icons have been added to the menu.
* Toolbars are fully customizable now. They can even be hidden completely.
* Added possibility to move and hide list view columns.
* Added option to switch between Recycle Bin and Training Area via the shortcut button. The Recycle Bin window will be closed when the Training Area is opened and vice versa.
* The list view will gain keyboard focus again when the view message window has been closed.
* Improved sorting.
Link filter
* Added effective top level domain handling. So, links like test1.co.uk, test2.co.uk and test3.co.uk will not be merged to co.uk anymore.
General
* Added possibility to reset all answers to message boxes.
* Added language detail window with estimation about a language file’s quality.
* Added support for the IMAP FETCH RFC822 command.
Fixed bugs
* Messages will be premarked even when the Training Area is already open.
* Fixed display of the column sort icon in the Recycle Bin and Training Area under Vista.
* Updating the DCC Filter configuration file will not cause the installer to stall anymore.
* The last seen timestamp in the Link Filter’s list of links will be updated correctly now
* Fixed a bug in the link filter that did not display the last seen date immediately when a new link was added manually.
Download here
Download Spamihilator from AppHit.com
Miranda IM is a multi protocol instant messenger client for Windows. Miranda IM uses very little memory and is extremely fast. It requires no installation and can be fitted on a single floppy disc. Its powerful plugin system makes Miranda IM very flexible. Only the most basic features are built in, but there are currently more than 350 free plugins available for download that allows users to extend the functionality of Miranda IM.
Available Protocols
- ICQ
- AIM
- MSN
- Jabber
- Yahoo
- IRC
- Gadu-Gadu
- Tlen
- Netsend
- File Size:1.64M
- License:Freeware
- Released:Sep 15, 2009
- Downloads:152 (All versions: 3838)
- OS Support:Windows 2000/XP/NT/Vista
- Plugins:None
- Publisher:Miranda IM
* Performance improvements with network logging disabled
* AIM: Added send directory ability
* MSN: Added ability to transfer all files in a directory
* MSN: Use protocol username for chat names in contact list
Bugfixes
* Fixed possible crash in the file transfer window while scrolling
* Fixed file transfer resume
* AIM: AIM 7 is now detected
* AIM: Improved file transfer support
* Jabber: Ignored the “Manual host” setting during the account registration
* MSN: Fixed chats with IM Control users
* MSN: Auth request reason is now displayed
* MSN: Fixed deletion of contact from Hotmail address book
* MSN: Fixed avatar sending on chat session
Download here
Download Miranda from AppHit.com
Thunderbird is a great email client from the same people who brought you the Firefox browser.
Thunderbird gives you IMAP/POP support, a built-in RSS reader, support for HTML mail, powerful quick search, saved search folders, advanced message filtering, message grouping, labels, return receipts, smart address book LDAP address completion, import tools, and the ability to manage multiple e-mail and newsgroup accounts.
- Full-Featured Email
- Junk Mail Filters
- Anti-Phishing Protection
- Advanced Security
- Automatic Updates
- File Size:6.56M
- License:Open Source
- Released:Aug 21, 2009
- Downloads:1371 (All versions: 22827)
- OS Support:Windows (All Versions)
- Plugins:None
- Publisher:Mozilla Organization
* Compromise of SSL-protected communication
Download here
Download Thunderbird from AppHit.com
Google Talk is a simple and free way to talk with and send instant messages to your friends. Like Gmail, Google Talk uses Google's innovative technologies to help people communicate more effectively and efficiently. Think of it as Google's approach to communications.
Google Talk is easy and intuitive to use. All you need to make free calls is an Internet connection, a microphone, and a speaker. After you download Google Talk, sign in with your Gmail username and password. Invite your friends to download Google Talk, and once they do, you'll be able to talk or IM with them instantly.
File Size: 1.53M
License: Freeware
Released: Jan 05, 2007
Downloads: 21454 (All versions: 21670)
OS Support: Windows 2000/XP/2003/Vista/XP64/Vista64
Plugins: None
Publisher: Google
Download here
You can now use Google Talk with Microsoft's new Windows Vista operating system.
Download Google Talk from AppHit.com
Use Yahoo! Messenger to call and talk over the Internet just like you're on the phone. All you need is a headset, or a microphone and speakers. It's that easy - just click the Call button. If no one's there, leave a voicemail!
You can also get much better sound quality than regular phone lines. Try it out - you and your friends will really hear a difference.
Find, add, share friends... It's easier than ever to add and invite friends to Messenger. You can even send your contact information to a friend's Address Book.
- File Size:15.82M
- License:Freeware
- Released:Aug 26, 2009
- Downloads:22532 (All versions: 385075)
- OS Support:Windows 2000/XP/2003/Vista/XP64/Vista64
- Plugins:None
- Publisher:Yahoo! Inc
Microsoft? Silverlight is a cross-browser, cross-platform plug-in for delivering the next generation of .NET based media experiences and rich interactive applications for the Web. Silverlight offers a flexible programming model that supports AJAX, VB, C#, Python, and Ruby, and integrates with existing Web applications.
Silverlight supports fast, cost-effective delivery of high-quality video to all major browsers running on the Mac OS or Windows.
- File Size:4.71M
- License:Freeware
- Released:Sep 03, 2009
- Downloads:13131 (All versions: 66660)
- OS Support:Windows 2000/XP/2003/Vista/XP64/Vista64
- Plugins:None
- Publisher:Microsoft Corporation
Download Silverlight from AppHit.com
Download here
The Adobe? AIR runtime lets developers use proven web technologies to build rich Internet applications that deploy to the desktop and run across operating systems.
Adobe AIR offers an exciting new way to engage customers with innovative, branded desktop applications, without requiring changes to existing technology, people, or processes.
From shopping on eBay to managing music, Adobe AIR means applications that are easier, more powerful, and more fun to use.
- File Size:15.11M
- License:Freeware
- Released:Jul 31, 2009
- Downloads:1072 (All versions: 7706)
- OS Support:Windows 2000/XP/2003/Vista/XP64/Vista64
- Plugins:Unknown
- Publisher:Adobe Systems Inc
Download Adobe Air from AppHit.com
Dynamic Toolbar
The world's first toolbar is still the best. The Alexa Toolbar offers the unique ability to update in real-time to offer you information about the sites you visit.
Safer Surfing!
Foil the phishers and scammers with Alexa's one-of-a-kind real-time site information. You won't be fooled ever again!
Smarter Surfing
With Alexa's patented real-time Related Links you will search less and find more on the Web. Try it and see.
- File Size:483K
- License:Shareware
- Released:Sep 12, 2007
- Downloads:1468 (All versions: 1468)
- OS Support:Windows 2000/XP/NT/Vista
- Plugins:Unknown
- MD5 Checksum:5564f5a97d9d721d0f143e367d26f536
Download here
Download Alexa Toor from AppHit.com
CometBird is a lightweight, powerful, fast web browser.
It uses less resources of your pc to display web pages faster and has lots of features, including anti-virus software integration, pop-up blocker, private data clearing function, Integrated web search, Smart Location Bar… etc. Also, you can customize the look&feel of the browser and integrate different add-ons into your browser to make it your style.
Stop talking about it, just try it yourself!
- File Size :7.83M
- License:Open Source
- Released:Aug 07, 2009
- Downloads:19401 (All versions: 115849)
- OS Support:Windows 2000/XP/NT/Vista
- Plugins:None
Download CometBird from AppHit.com
Avant Browser is a standalone application designed to expand features provided by Internet Explorer. It adds a bunch of features and functionalities to IE and its user-friendly interface brings a new level of clarity and efficiency to your browsing experience, and frequent upgrades have steadily improved its reliability.
Avant Browser is freeware. That's right. 100% Free! No cost to you ever. No limitations. No Adware. No Spyware. You can donate if you want, but it's certainly not required.
Avant's features include:
- Online Profile Storage
- Autofills
- Mouse Gestures
- Flash Animation Filter
- Built-in AD/Pop-up Blocker
- Built-in RSS/ATOM Reader.
- Additional Mouse Functions
- Multi-Window Browsing
- Real Full Screen Mode and Alternative Full Desktop mode
- Built-in Search Engine
- Full IE Compatibility
- Control Your Privacy
- Safe Recovery
- Skins
- Support for 41 languages