Ru-Board.club
← Вернуться в раздел «Программы»

» MySQL

Автор: LetMyPeopleGo
Дата сообщения: 26.09.2005 10:43
Достаточно свежий MySQL в комплекте с Apache и кое-какими другими полезными для вэб-разработок есть тут:
http://www.denwer.ru/

Цитата:
Джентльменский набор Web-разработчика («Д.н.w.р», читается «Денвер» — почти как название города) — набор дистрибутивов, используемый Web-разработчиками (программистами и дизайнерами) для отладки сайтов на «домашней» (локальной) Windows-машине без необходимости выхода в Интернет.

Автор: MaximKat
Дата сообщения: 13.10.2005 18:52
какой графический фронтенд к мускулу поддерживает работу через named pipe?
Автор: Nick 2003
Дата сообщения: 24.10.2005 22:42
MySQL for Windows 5.0.15
Changes
http://mysql.he.net/Downloads/MySQL-5.0/mysql-5.0.15-win32.zip (33 Мб)
Автор: Nick 2003
Дата сообщения: 22.11.2005 17:46
MySQL for Windows 5.0.16
[more=Changes]
Цитата:
Changes:
· Query cache is switched off if a thread (connection) has tables locked. This prevents invalid results where the locking thread inserts values between a second thread connecting and selecting from the table. (Bug #12385)
· Prepared statement parameters could cause errors in the binary log if the character set was cp932. (Bug #11338)
· Queries with subqueries that contain outer joins could return wrong results. (Bug #11479)
· Slave I/O threads were considered to be in the running state when launched (rather than after successfully connecting to the master server), resulting in incorrect SHOW SLAVE STATUS output. (Bug #10780)
· On Windows, the server could crash during shutdown if both replication threads and normal client connection threads were active. (Bug #11796)
· Some subqueries of the form SELECT ... WHERE ROW(...) IN (subquery) were being handled incorrectly. (Bug #11867)
· The mysql_info() C API function could return incorrect data when executed as part of a multi-statement that included a mix of statements that do and do not return information. (Bug #11688)
· Renamed the rest() macro in my_list.h to list_rest() to avoid name clashes with user code. (Bug #12327)
· myisampack failed to delete .TMD temporary files when run with -T option. (Bug #12235)
· Concatenating USER()/DATEBASE() with a column produces invalid results. (Bug #12351)
· For PKG installs on Mac OS X, the preinstallation and postinstallation scripts were being run only for new installations and not for upgrade installations, resulting in an incomplete installation process. (Bug #11380)
· User variables were not automatically cast for comparisons, causing queries to fail if the column and connection character sets differed. Now when mixing strings with different character sets but the same coercibility, allow conversion if one character set is a superset of the other. (Bug #10892)
· Pathame values for options such as ---basedir or --datadir didn't work on Japanese Windows machines for directory names containing multibyte characters having a second byte of 0x5C (‘’). (Bug #5439)
· Mishanding of comparison for rows containg NULL values against rows produced by an IN subquery could cause a server crash. (Bug #12392)
· INSERT ... SELECT ... ON DUPLICATE KEY UPDATE could fail with an erroneous “Column 'col_name' specified twice” error. (Bug #10109)
· myisam.test failed when server compiled using --without-geometry option. (Bug #11083)
· Creation of the mysql group account failed during the RPM installation. (Bug #12348)
· FLUSH TABLES WITH READ LOCK combined with LOCK TABLE .. WRITE caused deadlock. (Bug #9459)
· GROUP_CONCAT ignores the DISTINCT modifier when used in a query joining multiple tables where one of the tables has a single row. (Bug #12095)
· UNION query with FULLTEXT could cause server crash. (Bug #11869)
· Performing DATE(LEFT(column,8)) on a DATE column produces incorrect results. (Bug #12266)
· max_connections_per_hour setting was being capped by unrelated max_user_connections setting. (Bug #9947)
· big5 strings were not being stored in FULLTEXT index. (Bug #12075)
· Updated dependency list for RPM builds to include missing dependencies such as useradd and groupadd. (Bug #12233)
· Multiplying ABS() output by a negative number would return incorrect results. (Bug #11402)
· SELECT @@local... returned @@session... in the column header. (Bug #10724)
· Character data truncated when GBK characters 0xA3A0 and 0xA1 are present. (Bug #11987)
· Comparisons like SELECT "A" LIKE "A"; fail when using SET NAMES utf8;. (Bug #11754)
· Attempting to repair a table having a fulltext index on a column containing words whose length exceeded 21 characters and where myisam_repair_threads was greater than 1 would crash the server. (Bug #11684)
· Two threads could potentially initialize different characters sets and overwrite each other. (Bug #12109)
· NDB: Attempting to create or drop tables during a backup would cause the cluster to shut down. (Bug #11942)
· NDB_MGMD was leaking file descriptors. (Bug #11898)
· NDB ignored the Hostname option in the NDBD DEFAULT section of the NDB configuration file. (Bug #12028)
· The temporary tables created by an ALTER TABLE on a cluster table were visible to all MySQL servers. (Bug #12055)
· For prepared statements, the SQL parser did not disallow ‘?’ parameter markers immediately adjacent to other tokens, which could result in malformed statements in the binary log. (For example, SELECT * FROM t WHERE? = 1 could become SELECT * FROM t WHERE0 = 1.) (Bug #11299)
· GROUP_CONCAT() sometimes returned a result with a different collation that that of its arguments. (Bug #10201)
· When two threads compete for the same table, a deadlock could occur if one thread has also a lock on another table through LOCK TABLES and the thread is attempting to remove the table in some manner and the other thread want locks on both tables. (Bug #10600)
· Incorrect error message displayed if user attempted to create a table in a non-existing database using CREATE database_name.table_name syntax. (Bug #10407)
· The LPAD() and RPAD() functions returned the wrong length to mysql_fetch_fields(). (Bug #11311)
· The C API function mysql_statement_reset() did not clear error information. (Bug #11183)
· Multiple-table UPDATE queries using CONVERT_TZ() would fail with an error. (Bug #9979)
· mysql_fetch_fields() returned incorrect length information for MEDIUM and LONG TEXT and BLOB columns. (Bug #9735)
· LIKE pattern matching using prefix index didn't return correct result. (Bug #11650)
· The MySQL server had issues with certain combinations of basedir and datadir. (Bug #7249)
· mysql_next_result() returns incorrect value if final query in a batch fails. (Bug #12001)
· SHOW BINARY LOGS displayed a file size of 0 for all log files but the current one if the files were not located in the data directory. (Bug #12004)
· Server-side prepared statements failed for columns with a character set of ucs2. (Bug #9442)
· References to system variables in an SQL statement prepared with PREPARE were evaluated during EXECUTE to their values at prepare time, not to their values at execution time. (Bug #9359)
· For server shutdown on Windows, error messages of the form Forcing close of thread n user: 'name' were being written to the error log. Now connections are closed more gracefully without generating error messages. (Bug #7403)
· Corrected a problem with the optimizer incorrectly adding NOT NULL constraints, producing in incorrect results for complex queries. (Bug #11482)
· Corrected an optimizer problem with NOT NULL constraints within a subquery in an UPDATE statement that resulted in a server crash. (Bug #11868)
· Creating a table with a SET or ENUM column with the DEFAULT 0 clause caused a server crash if the table's character set was utf8. (Bug #11819)
· In SQL prepared statements, comparisons could fail for values not equally space-padded. For example, SELECT 'a' = 'a '; returns 1, but PREPARE s FROM 'SELECT ?=?'; SET @a = 'a', @b = 'a '; PREPARE s FROM 'SELECT ?=?'; EXECUTE s USING @a, @b; incorrectly returned 0. (Bug #9379)
· InnoDB: Do not flush after each write, not even before setting up the doublewrite buffer. Flushing can be extremely slow on some systems. (Bug #12125)
· ISO-8601 formatted dates were not being parsed correctly. (Bug #7308)
[/more]
http://sunsite.informatik.rwth-aachen.de/mysql/Downloads/MySQL-5.0/mysql-5.0.16-win32.zip (33 Мб)
Автор: ULTRASPEED
Дата сообщения: 25.11.2005 06:15
Подскажите пожалуйсто, что за файл по пути на локальном диске \MySQL419\data\ibdata1, вырос он уже до 700mb. Если его убить, мускул потом не стартует.
Автор: ylip
Дата сообщения: 06.12.2005 11:21
Уважаемые мемберы!
Помогите чайнику. Установил MySQL версии 4.1.14 на компьютер, подсоединенный к домену локальной сети. Все настройки - по умолчанию. Ошибок при установке не было.
Встала в каталог C:\Program Files\MySQL\MySQL Server 4.1
При попытке запуска дает ошибку ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO) Подскажите, что не так? "Слушай, ничего не сделал, только вошел..." (вернее попытался).

Добавлено:
Извините, кое-что забыл. Растерялся-таки. ОС - Windows 2000 Service Pack 4. MySQL ставлю для изучения. До этого работал только с dbf-файлами. Еще важно: служба mysql-nt встала нормально, запускается при запуске Windows. Но что-то все же не так как должно быть, иначе откуда проблемы? Может, кто подскажет? Я в первый раз вообще с MySQL столкнулся, так что вполне вероятно, чего-то не учел. Заранее спасибо.
Автор: Nick 2003
Дата сообщения: 07.12.2005 01:59
MySQL For Windows 5.1.5 Alpha
http://mysql.osuosl.org/Downloads/MySQL-5.1/mysql-noinstall-5.1.5-alpha-win32.zip (27 Мб)
Автор: Nick 2003
Дата сообщения: 30.12.2005 21:13
MySQL for Windows 5.0.18
[more=Changes]
Цитата:
Changes:
Ў¤ It is now possible to build the server such that MyISAM tables can support up to 128 keys rather than the standard 64. This can be done by configuring the build using the option --with-max-indexes=N, where NЎЬ128 is the maximum number of indexes to permit per table. (Bug #10932)
Ў¤ The server treats stored routine parameters and local variables (and stored function return values) according to standard SQL. Previously, parameters, variables, and return values were treated as items in expressions and were subject to automatic (silent) conversion and truncation. Now the data type is observed. Data type conversion and overflow problems that occur in assignments result in warnings, or errors in strict mode. The CHARACTER SET clause for character data type declarations is used. Parameters, variables, and return values must be scalars; it is no longer possible to assign a row value. Also, stored functions execute using the sql_mode value in force at function creation time rather than ignoring it. For more information, see Section 17.2.1, Ў°CREATE PROCEDURE and CREATE FUNCTIONЎ±. (Bug #8702, Bug #8768, Bug #8769, Bug #9078, Bug #9572, Bug #12903, Bug #13705, Bug #13808, Bug #13909, Bug #14161, Bug #15148)
Ў¤ Bugs fixed:
Ў¤ SHOW [FULL] COLUMNS and SHOW INDEX FROM did not function with temporary tables. (Bug #14271, Bug #14387, Bug #15224)
Ў¤ The INFORMATION_SCHEMA.COLUMNS table did not report the size of BINARY or VARBINARY columns. (Bug #14271)
Ў¤ The server would not compile under Cygwin. (Bug #13640)
Ў¤ DESCRIBE did not function with temporary tables. (Bug #12770)
Ў¤ Reversing the order of operands in a WHERE clause testing a simple equality (such as WHERE t1.col1 = t2.col2) would produce different output from EXPLAIN. (Bug #15106)
Ў¤ Column aliases were displayed incorrectly in a SELECT from a view following an update to a base table of the view. (Bug #14861)
Ў¤ Set functions could not be aggregated in outer subqueries. (Bug #12762)
Ў¤ When a connection using yaSSL was aborted, the server would continue to try to read the closed socket, and the thread continued to appear in the output of SHOW PROCESSLIST. Note that this issue did not affect secure connection attempts using OpenSSL. (Bug #15772)
Ў¤ InnoDB: Having two tables in a parent-child relationship enforced by a foreign key where one table used ROW_FORMAT=COMPACT and the other used ROW_FORMAT=REDUNDANT could result in a MySQL server crash. Note that this problem did not exist prior to MySQL 5.0.3, when the compact row format for InnoDB was introduced. (Bug #15550)
Ў¤ BDB: A DELETE, INSERT, or UPDATE of a BDB table could cause the server to crash where the query contained a subquery using an index read. (Bug #15536)
Ў¤ A left join on a column that having a NULL value could cause the server to crash. (Bug #15268)
Ў¤ A replication slave server could sometimes crash on a BEFORE UPDATE trigger if the UPDATE query was not executed in the same database as the table with the trigger. (Bug #14614)
Ў¤ A race condition when creating temporary files caused a deadlock on Windows with threads in Opening tables or Waiting for table states. (Bug #12071)
Ў¤ InnoDB: If FOREIGN_KEY_CHECKS was 0, InnoDB allowed inconsistent foreign keys to be created. (Bug #13778)
Ў¤ NDB Cluster: Under some circumstances, it was possible for a restarting node to undergo a forced shutdown. (Bug #15632)
Ў¤ NDB Cluster: If an abort by the Transaction Coordinator timed out, the abort condition was incorrectly handled, causing the transaction record to be released prematurely. (Bug #15685)
Ў¤ NDB Cluster: The ndb_read_multi_range.test script failed to drop a table, causing the test to fail. (Bug #15675) (See also Bug #15401.)
Ў¤ NDB Cluster: A node which failed during cluster startup was sometimes not removed from the internal list of active nodes. (Bug #15587)
Ў¤ Resolution of the argument to the VALUES() function to a variable inside a stored routine caused a server crash. The argument must be a table column. (Bug #15441)
[/more]
http://sunsite.informatik.rwth-aachen.de/mysql/Downloads/MySQL-5.0/mysql-5.0.18-win32.zip
Автор: Nick 2003
Дата сообщения: 08.03.2006 18:32
MySQL For Windows 5.1.7 Beta
http://mirror.services.wisc.edu/mysql/Downloads/MySQL-5.1/mysql-noinstall-5.1.7-beta-win32.zip (38 Mb)
Автор: Vladimir54
Дата сообщения: 02.04.2006 18:10
У меня ко всем вопрос!!!
Чем отличается этот архив "mysql-5.0.19-win32.zip" от этого архива "mysql-5.0.19.tar.gz" ?
Автор: NeveR_Mind
Дата сообщения: 09.04.2006 15:38
Vladimir54
Тем что в первом судя по всему скомпилированные файлы для винды (binaries),
а во втором скорее всего исходники для компиляции в линуксе.
Автор: diSmiSS
Дата сообщения: 25.04.2006 15:54
Может кто нубудь посоветовать программу эквивалент MS SQL Profiler для MySQL?
Автор: wellwisher
Дата сообщения: 30.04.2006 14:52
ylip

Цитата:
При попытке запуска дает ошибку ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO) Подскажите, что не так? "Слушай, ничего не сделал, только вошел..." (вернее попытался).

Как входил ?
Так : mysql -u <user name> -p (вылезет подсказка для пароля)
Если просто mysql - то и полезет фигня типа указанной
Автор: vels
Дата сообщения: 02.05.2006 16:14
MySQL for Windows 5.0.21
http://mysql.blic.net/Downloads/MySQL-5.0/mysql-noinstall-5.0.21-win32.zip
Автор: diSmiSS
Дата сообщения: 03.05.2006 18:05
Кто-нибудь имеет опыт работы с виндовым сервисом mysqlwatch?
1. Для чего он нужен? (догадки есть но хотелосьбы авторитетный ответ)
2. Как его правильно использовать?

Цитата:
mysqlwatch
mysqlwatch -install to install the service
mysqlwatch -remove to remove the service
mysqlwatch -debug <params> to run as a console app for debugging

Установить - установил. А вот дальше затыка...
Автор: Cheery
Дата сообщения: 03.05.2006 18:10
diSmiSS

Цитата:
Установить - установил. А вот дальше затыка...

а он тебе нужен? судя по названию следит за тем, запущен ли mysql сервер или нет
Автор: diSmiSS
Дата сообщения: 04.05.2006 18:21

Цитата:
судя по названию следит за тем, запущен ли mysql сервер или нет

*нервный смешок*
я тоже как раз исходил из названия.... но подумал что он должен выплевывать в файл все команды которые выполняет мускул .

Кто нибудь может кто нибудь точно сказать что предположение Cheery или мое верно? А еще лучше ткнуть носом в доки.

ЗЫ на фосайте ни на форуме ни в новостях практически ни чего по этой теме нет.

Автор: vels
Дата сообщения: 01.06.2006 07:46
MySQL for Windows 5.0.22
http://ftp.citkit.ru/pub/MySQL/Downloads/MySQL-5.0/mysql-noinstall-5.0.22-win32.zip
Автор: GRIND
Дата сообщения: 01.06.2006 15:27
День добрый, подскажите, у кого есть опыт, возникают ли какие-то проблемы при переводе движка, работающего на 4-й MySQL на 5-ю. Какие при этом мог быть подводные камни?
Автор: iogun
Дата сообщения: 29.11.2006 16:20
подскажите как установить мускул без инсталятора в винде
Автор: WRFan
Дата сообщения: 29.11.2006 18:28

Цитата:
подскажите как установить мускул без инсталятора в винде


это трудновато, т.к. ведь придётся ещё и службу от руки инсталлировать. а в чём проблема то? я так сделал - сначала проинсталлировал финал, потом переписал все файлы в папке новой бета версией
Автор: iogun
Дата сообщения: 29.11.2006 20:42
WRFan
а мускул прописывает какие нить ключи в реестре.
меня вот что конкретно интересует:
на одной машине как то установил и настроил что мускул принимает в базу русские символы, а на другом компе ну ни как не хочет пише что то типа "Data to long ..." когда пытаюсь вставить в таблицу русские слова.
вроде и там и там при установке ставил default-charset=cp1251
Автор: Cheery
Дата сообщения: 29.11.2006 20:44
iogun

Цитата:
а мускул прописывает какие нить ключи в реестре.

он же должен стартовать как сервис.. настройки прописывает в my.ini
Автор: WRFan
Дата сообщения: 29.11.2006 23:27

Цитата:
настроил что мускул принимает в базу русские символы, а на другом компе ну ни как не хочет


не, сорри, с этим не разбираюсь, до сих пор только английские данные в базу задавал
Автор: cneg0v1k
Дата сообщения: 17.12.2006 19:35
хз в какой топик писать, вообщем сюда катаю..
проблема при работе на localhost'e возникла после перехода с mysql 4 на mysql 5 (и обноления PHP 4 на PHP 5.2.0) .. теперь при работе с некоторыми скриптами (инсталяции, в частности IPB и mediawiki) вылетает обшибка..

mediawiki:

Код: Database type: MySQL
Loading class: DatabaseMysql
Attempting to connect to database server as frai...success.
Connected to 5.0.27-community-nt
Database wiki exists
Creating tables... using MySQL 4 table defs...Query "CREATE TABLE `user` ( user_id int(5) unsigned NOT NULL auto_increment, user_name varchar(255) binary NOT NULL default '', user_real_name varchar(255) binary NOT NULL default '', user_password tinyblob NOT NULL default '', user_newpassword tinyblob NOT NULL default '', user_email tinytext NOT NULL default '', user_options blob NOT NULL default '', user_touched char(14) binary NOT NULL default '', user_token char(32) binary NOT NULL default '', user_email_authenticated char(14) binary, user_email_token char(32) binary, user_email_token_expires char(14) binary, user_registration char(14) binary, PRIMARY KEY user_id (user_id), UNIQUE INDEX user_name (user_name), INDEX (user_email_token) ) TYPE=InnoDB " failed with error code "BLOB/TEXT column 'user_password' can't have a default value (localhost)".
Автор: WRFan
Дата сообщения: 17.12.2006 20:34

Цитата:
и обноления PHP 4 на PHP 5.2.0


пхп инсталляция ведь mysql библиотеки переписывает, попробуй вернуть оригиналы с mysql сайта
libmysql.dll
ext\php_mysql.dll
ext\php_mysqli.dll
Автор: Dr_Spectre
Дата сообщения: 01.03.2007 10:03
cneg0v1k
а после обновления мускуля скрипт mysql_fix_privilege_tables запускали?
Автор: Ksardasss
Дата сообщения: 07.02.2008 21:45
Ребята, тема конечно старая, и вопрос покажется ламерским, но всё же рискну задать...

В общем установил Апач - ru_apache_1.3.22-PL30.9-win32-x86, есть ещё другой - apache_2.2.4-win32-x86-no_ssl(может лучше его установить?), и PHP php-5.2.5-Win32.
Всё работает.

Пытаюсь приделать ещё mysql(mysql-noinstall-5.1.11-beta-win32) подскажите как установить, приспособить, ноуинсталл этот???? Службу запустил MySQL и файл my.ini отредактировал вроде как положено... но в функции phpinfo всё равно не показывает mysql. что делать? Что я неправильно сделл???
Автор: makarei
Дата сообщения: 07.02.2008 22:50
Ksardasss
Чтоб не мучаться, - установите лучше этот пакет - VertigoServ.
Автор: Cheery
Дата сообщения: 07.02.2008 22:53
Ksardasss
Установка Apache 2.x, PHP4, PERL и MySQL на localhost под Wi

Страницы: 1234567

Предыдущая тема: Нужна программа исправления украинской раскрадки клавиатуры


Форум Ru-Board.club — поднят 15-09-2016 числа. Цель - сохранить наследие старого Ru-Board, истории становления российского интернета. Сделано для людей.