bk commit - mysqldoc@docsrva tree (paul:1.2750) -
06-04-2005
, 11:24 AM
Below is the list of changes that have just been committed into a local
mysqldoc repository of paul. When paul does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://www.mysql.com/doc/I/n/Install...urce_tree.html
ChangeSet
1.2750 05/06/04 11:24:25 paul (AT) frost (DOT) snake.net +1 -0
manual.texi:
Comment out cursor implementation details.
Some reformatting.
Docs/manual.texi
1.2988 05/06/04 11:23:02 paul (AT) frost (DOT) snake.net +23 -14
Comment out cursor implementation details.
Some reformatting.
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: paul
# Host: frost.snake.net
# Root: /Volumes/frost2/MySQL/bk/mysqldoc
--- 1.2987/Docs/manual.texi 2005-06-03 21:16:13 -05:00
+++ 1.2988/Docs/manual.texi 2005-06-04 11:23:02 -05:00
@@ -88810,12 +88810,14 @@
a statement multiple times, @code{mysql_stmt_execute()} closes any open
cursor before opening a new one.
-@code{mysql_stmt_execute()} opens no cursor for result sets that contain
-zero rows or one row. It also opens no cursor for statements such as
-@code{EXPLAIN} and @code{SHOW} statements such as @code{SHOW VARIABLES} that
-are not based on the contents of @code{INFORMATION_SCHEMA}. In such cases,
-the result set is transferred to the client implicitly with
-@code{mysql_stmt_store_result()}.
+@c I've commented out the implementation details; they might change -- PD
+
+@c @code{mysql_stmt_execute()} opens no cursor for result sets that contain
+@c zero rows or one row. It also opens no cursor for statements such as
+@c @code{EXPLAIN} and @code{SHOW} statements such as @code{SHOW VARIABLES} that
+@c are not based on the contents of @code{INFORMATION_SCHEMA}. In such cases,
+@c the result set is transferred to the client implicitly with
+@c @code{mysql_stmt_store_result()}.
This function was added in MySQL 4.1.2. Cursor support was added in MySQL 5.
@@ -97774,27 +97776,34 @@
MySQL to another location, adjust the following commands accordingly.
At the DOS command prompt, execute this command:
+
@example
C:\> C:\mysql\bin\mysqld-nt --init-file=C:\mysql-init.txt
@end example
-The contents of the init-file are executed at server startup, changing the root password.
-After the server has started successfully you should delete @file{C:\mysql-init.txt}.
-Users of MySQL 4.1 and higher who install MySQL using the MySQL Installation Wizard may need to
-specify a defaults-file:
+The contents of the file named by the @code{--init-file} option are executed
+at server startup, changing the @code{root} password. After the server has
+started successfully, you should delete @file{C:\mysql-init.txt}.
+
+Users of MySQL 4.1 and higher who install MySQL using the MySQL Installation
+Wizard may need to specify a @code{--defaults-file} option:
@example
-C:\>C:\Program Files\MySQL\MySQL Server 5.0\bin\mysqld-nt.exe --defaults-file="C:\Program Files\MySQL\MySQL Server 5.0\my.ini" --init-file=C:\mysql-init.txt
+C:\> C:\Program Files\MySQL\MySQL Server 5.0\bin\mysqld-nt.exe
+ --defaults-file="C:\Program Files\MySQL\MySQL Server 5.0\my.ini"
+ --init-file=C:\mysql-init.txt
@end example
-The appropriate defaults-file setting can be found using the Services Manager:
+The appropriate @code{--defaults-file} setting can be found using the
+Services Manager:
@example
Start Menu -> Control Panel -> Administrative Tools -> Services
@end example
-Find the MySQL service in the list, right-click on it, and choose the @code{Properties} option. The
-@code{Path to executable} field contains the defaults-file setting.
+Find the MySQL service in the list, right-click on it, and choose the
+@code{Properties} option. The @code{Path to executable} field contains the
+@code{--defaults-file} setting.
@item
Stop the MySQL server, then restart it in normal mode again.
--
MySQL Internals Mailing List
For list archives: http://lists.mysql.com/internals
To unsubscribe: http://lists.mysql.com/internals?uns...ie.nctu.edu.tw |