Author: mcbrown
Date: 2007-02-21 12:25:46 +0100 (Wed, 21 Feb 2007)
New Revision: 5012
Log:
Adding info on the Use Procedure Bodies option for connections. Doing some reformatting, typo fixing and other improvements
Modified:
trunk/refman-common/connector-net.xml
Modified: trunk/refman-common/connector-net.xml
===================================================================
--- trunk/refman-common/connector-net.xml 2007-02-21 10:01:29 UTC (rev 5011)
+++ trunk/refman-common/connector-net.xml 2007-02-21 11:25:46 UTC (rev 5012)
Changed blocks: 210, Lines Added: 335, Lines Deleted: 333; 86389 bytes
@@ -120,7 +120,7 @@
<title>Connector/NET Versions</title>
<para>
- There is currently one version of Connector/NET available:
+ There are currently two versions of Connector/NET available:
</para>
<itemizedlist>
@@ -131,6 +131,14 @@
5.0 features, and full compatibility with the ADO.NET driver
interface.
</para>
+
+ <para>
+ Connector/NET 5.0 is currently in beta, and includes support
+ for MySQL 4.0, MySQL 4.1, MySQL 5.0 and MySQL 5.1 features.
+ Connector/NET 5.0 also includes full support for the ADO.Net
+ 2.0 interfaces and subclasses, includes support for the usage
+ advisor and performance monitor (PerfMon) hooks.
+ </para>
</listitem>
</itemizedlist>
@@ -528,12 +536,14 @@
<title>Installing Connector/NET using the Source</title>
- <para>
- <emphasis role="bold">Caution</emphasis>: You should read this
- section only if you are interested in helping us test our new
- code. If you just want to get Connector/NET up and running on
- your system, you should use a standard release distribution.
- </para>
+ <caution>
+ <para>
+ You should read this section only if you are interested in
+ helping us test our new code. If you just want to get
+ Connector/NET up and running on your system, you should use a
+ standard release distribution.
+ </para>
+ </caution>
<para>
To be able to access the Connector/NET source tree, you must
@@ -652,7 +662,7 @@
<section id="connector-net-examples-mysqlcommand">
- <title>MySqlCommand</title>
+ <title>Using <literal>MySqlCommand</literal></title>
<para>
Represents a SQL statement to execute against a MySQL database.
@@ -724,11 +734,7 @@
close the connection.
</para>
- <formalpara>
- <title>Note</title>
-
-
-
+ <note>
<para>
Prior versions of the provider used the '@' symbol to mark
parameters in SQL. This is incompatible with MySQL user
@@ -738,7 +744,7 @@
be aware that an exception will not be throw if you fail to
define a parameter that you intended to use in your SQL.
</para>
- </formalpara>
+ </note>
<para>
<emphasis role="bold">Examples</emphasis>
@@ -823,17 +829,14 @@
its properties.
</para>
- <formalpara>
- <title>Note</title>
-
-
-
+ <note>
<para>
This example shows how to use one of the overloaded versions
- of the MySqlCommand constructor. For other examples that
- might be available, see the individual overload topics.
+ of the <literal>MySqlCommand</literal> constructor. For
+ other examples that might be available, see the individual
+ overload topics.
</para>
- </formalpara>
+ </note>
<para>
Visual Basic example:
@@ -1366,23 +1369,19 @@
automatically.
</para>
- <formalpara>
- <title>Note</title>
-
-
-
+ <note>
<para>
- When calling ExecuteReader with the SingleRow behavior, you
- should be aware that using a <literal>limit</literal> clause
- in your SQL will cause all rows (up to the limit given) to
- be retrieved by the client. The
- <literal>MySqlDataReader.Read</literal> method will still
- return false after the first row but pulling all rows of
- data into the client will have a performance impact. If the
- <literal>limit</literal> clause is not necessary, it should
- be avoided.
+ When calling <literal>ExecuteReader</literal> with the
+ <literal>SingleRow</literal> behavior, you should be aware
+ that using a <literal>limit</literal> clause in your SQL
+ will cause all rows (up to the limit given) to be retrieved
+ by the client. The <literal>MySqlDataReader.Read</literal>
+ method will still return false after the first row but
+ pulling all rows of data into the client will have a
+ performance impact. If the <literal>limit</literal> clause
+ is not necessary, it should be avoided.
</para>
- </formalpara>
+ </note>
<para>
<emphasis role="bold">Returns:</emphasis> A
@@ -1393,7 +1392,7 @@
<section id="connector-net-examples-mysqlcommand-executereader">
- <title>ExecuteReader</title>
+ <title>Using <literal>ExecuteReader</literal></title>
<para>
Sends the <literal>CommandText</literal> to the
@@ -1484,7 +1483,7 @@
<section id="connector-net-examples-mysqlcommand-prepare">
- <title>Prepare</title>
+ <title>Using <literal>Prepare</literal></title>
<para>
Creates a prepared version of the command on an instance of
@@ -1982,7 +1981,7 @@
<section id="connector-net-examples-mysqlcommandbuilder">
- <title>MySqlCommandBuilder</title>
+ <title>Using <literal>MySqlCommandBuilder</literal></title>
<para>
Automatically generates single-table commands used to reconcile
@@ -2056,25 +2055,22 @@
are no longer used.
</para>
- <formalpara>
- <title>Note</title>
-
-
-
+ <note>
<para>
- Caution must be used when using MySqlCOmmandBuilder on MySql
- 4.0 systems. With MySql 4.0, database/schema information is
- not provided to the connector for a query. This means that a
- query that pulls columns from two identically named tables in
- two or more different databases will not cause an exception to
- be thrown but will not work correctly. Even more dangerous is
- the situation where your select statement references database
- X but is executed in database Y and both databases have tables
+ Caution must be used when using
+ <literal>MySqlCommandBuilder</literal> on MySql 4.0 systems.
+ With MySQL 4.0, database/schema information is not provided to
+ the connector for a query. This means that a query that pulls
+ columns from two identically named tables in two or more
+ different databases will not cause an exception to be thrown
+ but will not work correctly. Even more dangerous is the
+ situation where your select statement references database X
+ but is executed in database Y and both databases have tables
with similar layouts. This situation can cause unwanted
changes or deletes. This note does not apply to MySQL versions
4.1 and later.
</para>
- </formalpara>
+ </note>
<para>
<emphasis role="bold">Examples</emphasis>
@@ -2512,7 +2508,7 @@
<section id="connector-net-examples-mysqlconnection">
- <title>MySqlConnection</title>
+ <title>Using <literal>MySqlConnection</literal></title>
<para>
Represents an open connection to a MySQL Server database. This
@@ -3109,18 +3105,14 @@
<literal>MySqlTransaction.Rollback</literal> method.
</para>
- <formalpara>
- <title>Note</title>
-
-
-
+ <note>
<para>
If you do not specify an isolation level, the default
isolation level is used. To specify an isolation level with
the <literal>BeginTransaction</literal> method, use the
overload that takes the <literal>iso</literal> parameter.
</para>
- </formalpara>
+ </note>
<para>
<emphasis role="bold">Examples</emphasis>
@@ -3267,18 +3259,14 @@
<literal>MySqlTransaction.Rollback</literal> method.
</para>
- <formalpara>
- <title>Note</title>
-
-
-
+ <note>
<para>
If you do not specify an isolation level, the default
isolation level is used. To specify an isolation level with
the <literal>BeginTransaction</literal> method, use the
overload that takes the <literal>iso</literal> parameter.
</para>
- </formalpara>
+ </note>
<para>
<emphasis role="bold">Examples</emphasis>
@@ -3679,54 +3667,74 @@
<para>
The basic format of a connection string consists of a series
of keyword/value pairs separated by semicolons. The equal sign
- (=) connects each keyword and its value. To include values
- that contain a semicolon, single-quote character, or
- double-quote character, the value must be enclosed in double
- quotes. If the value contains both a semicolon and a
- double-quote character, the value can be enclosed in single
- quotes. The single quote is also useful if the value begins
- with a double-quote character. Conversely, the double quote
- can be used if the value begins with a single quote. If the
- value contains both single-quote and double-quote characters,
- the quote character used to enclose the value must be doubled
- each time it occurs within the value.
+ (<literal>=</literal>) connects each keyword and its value.
+ Additional notes on setting values for options:
</para>
- <para>
- To include preceding or trailing spaces in the string value,
- the value must be enclosed in either single quotes or double
- quotes. Any leading or trailing spaces around integer,
- Boolean, or enumerated values are ignored, even if enclosed in
- quotes. However, spaces within a string literal keyword or
- value are preserved. Using .NET Framework version 1.1, single
- or double quotes may be used within a connection string
- without using delimiters (for example, Data Source= my'Server
- or Data Source= my"Server), unless a quote character is the
- first or last character in the value.
- </para>
+ <itemizedlist>
- <para>
- To include an equal sign (=) in a keyword or value, it must be
- preceded by another equal sign. For example, in the
- hypothetical connection string
- </para>
+ <listitem>
+ <para>
+ To include values that contain a semicolon, single-quote
+ character, or double-quote character, the value must be
+ enclosed in double quotes. If the value contains both a
+ semicolon and a double-quote character, the value can be
+ enclosed in single quotes. The single quote is also useful
+ if the value begins with a double-quote character.
+ Conversely, the double quote can be used if the value
+ begins with a single quote. If the value contains both
+ single-quote and double-quote characters, the quote
+ character used to enclose the value must be doubled each
+ time it occurs within the value.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ To include preceding or trailing spaces in the string
+ value, the value must be enclosed in either single quotes
+ or double quotes. Any leading or trailing spaces around
+ integer, Boolean, or enumerated values are ignored, even
+ if enclosed in quotes. However, spaces within a string
+ literal keyword or value are preserved. Using .NET
+ Framework version 1.1, single or double quotes may be used
+ within a connection string without using delimiters (for
+ example, Data Source= my'Server or Data Source=
+ my"Server), unless a quote character is the first or last
+ character in the value.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ To include an equal sign (=) in a keyword or value, it
+ must be preceded by another equal sign. For example, in
+ the hypothetical connection string
+ </para>
+
<programlisting>"key==word=value"</programlisting>
- <para>
- the keyword is "key=word" and the value is "value".
- </para>
+ <para>
+ the keyword is "key=word" and the value is "value".
+ </para>
+ </listitem>
- <para>
- If a specific keyword in a keyword= value pair occurs multiple
- times in a connection string, the last occurrence listed is
- used in the value set.
- </para>
+ <listitem>
+ <para>
+ If a specific keyword in a keyword= value pair occurs
+ multiple times in a connection string, the last occurrence
+ listed is used in the value set.
+ </para>
+ </listitem>
- <para>
- Keywords are not case sensitive.
- </para>
+ <listitem>
+ <para>
+ Keywords are not case sensitive.
+ </para>
+ </listitem>
+ </itemizedlist>
+
<para>
The following table lists the valid names for keyword values
within the <literal>ConnectionString</literal>.
@@ -3734,9 +3742,9 @@
<informaltable>
<tgroup cols="3">
- <colspec colwidth="33*"/>
- <colspec colwidth="33*"/>
- <colspec colwidth="33*"/>
+ <colspec colwidth="25*"/>
+ <colspec colwidth="10*"/>
+ <colspec colwidth="65*"/>
<tbody>
<row>
<entry>Name</entry>
@@ -3899,6 +3907,22 @@
connect to MySQL on that named pipe.This settings only
applies to the Windows platform.</entry>
</row>
+ <row>
+ <entry><literal>Use Procedure Bodies</literal></entry>
+ <entry>true</entry>
+ <entry>Setting this option to <literal>false</literal> indicates that the user
+ connecting to the database does not have the
+ <literal>SELECT</literal> privileges for the
+ <literal>mysql.proc</literal> (stored procedures)
+ table. When to set to <literal>false</literal>,
+ Connector/NET will not rely on this information being
+ available when the procedure is called. Because
+ Connector/NET will be unable to determine this
+ information, you should explicitly set the types of
+ the all the parameters before the call and the
+ parameters should be added to the command in the exact
+ same order as they appear in the procedure definition.</entry>
+ </row>
</tbody>
</tgroup>
</informaltable>
@@ -3907,14 +3931,14 @@
The following table lists the valid names for connection
pooling values within the <literal>ConnectionString</literal>.
For more information about connection pooling, see Connection
- Pooling for the MySql Data Provider.
+ Pooling for the MySQL Data Provider.
</para>
<informaltable>
<tgroup cols="3">
- <colspec colwidth="33*"/>
- <colspec colwidth="33*"/>
- <colspec colwidth="33*"/>
+ <colspec colwidth="20*"/>
+ <colspec colwidth="10*"/>
+ <colspec colwidth="70*"/>
<tbody>
<row>
<entry>Name</entry>
@@ -3984,7 +4008,7 @@
</para>
<para>
- <literal>Note</literal> The MySql Data Provider uses the
+ <literal>Note</literal> The MySQL Data Provider uses the
native socket protocol to communicate with MySQL. Therefore,
it does not support the use of an ODBC data source name (DSN)
when connecting to MySQL because it does not add an ODBC
@@ -4077,7 +4101,7 @@
<section id="connector-net-examples-mysqldataadapter">
- <title>MySqlDataAdapter</title>
+ <title>Using <literal>MySqlDataAdapter</literal></title>
<para>
Represents a set of data commands and a database connection that
@@ -4137,11 +4161,7 @@
<literal>MySQLDataAdapter</literal> constructor.
</para>
- <formalpara>
- <title>Note</title>
-
-
-
+ <note>
<para>
Please be aware that the <literal>DataColumn</literal> class
in .NET 1.0 and 1.1 does not allow columns with type of
@@ -4149,7 +4169,7 @@
plan to use autoincremement columns with MySQL, you should
consider using signed integer columns.
</para>
- </formalpara>
+ </note>
<para>
<emphasis role="bold">Examples</emphasis>
@@ -4836,18 +4856,14 @@
previously created <literal>MySqlCommand</literal> object.
</para>
- <formalpara>
- <title>Note</title>
-
-
-
+ <note>
<para>
If execution of this command returns rows, these rows may be
added to the <literal>DataSet</literal> depending on how you
set the <literal>MySqlCommand.UpdatedRowSource</literal>
property of the <literal>MySqlCommand</literal> object.
</para>
- </formalpara>
+ </note>
<para>
<emphasis role="bold">Examples</emphasis>
@@ -4951,18 +4967,14 @@
previously created <literal>MySqlCommand</literal> object.
</para>
- <formalpara>
- <title>Note</title>
-
-
-
+ <note>
<para>
If execution of this command returns rows, these rows may be
merged with the DataSet depending on how you set the
<literal>MySqlCommand.UpdatedRowSource</literal> property of
the <literal>MySqlCommand</literal> object.
</para>
- </formalpara>
+ </note>
<para>
<emphasis role="bold">Examples</emphasis>
@@ -5132,7 +5144,7 @@
<section id="connector-net-examples-mysqldatareader">
- <title>MySqlDataReader</title>
+ <title>Using <literal>MySqlDataReader</literal></title>
<para>
To create a <literal>MySQLDataReader</literal>, you must call
@@ -5296,13 +5308,9 @@
<para></para>
- <formalpara>
- <title>Note</title>
-
-
-
+ <note>
<para>
- MySql allows date columns to contain the value '0000-00-00'
+ MySQL allows date columns to contain the value '0000-00-00'
and datetime columns to contain the value '0000-00-00
00:00:00'. The DateTime structure cannot contain or
represent these values. To read a datetime value from a
@@ -5313,7 +5321,7 @@
option. For more information on this option, please refer to
<literal>MySqlConnection.ConnectionString</literal>.
</para>
- </formalpara>
+ </note>
<para>
<emphasis role="bold">Parameters:</emphasis> The zero-based
@@ -5585,10 +5593,10 @@
<section id="connector-net-examples-mysqlexception">
- <title>MySqlException</title>
+ <title>Using <literal>MySqlException</literal></title>
<para>
- This class is created whenever the MySql Data Provider
+ This class is created whenever the MySQL Data Provider
encounters an error generated from the server.
</para>
@@ -5651,7 +5659,7 @@
<section id="connector-net-examples-mysqlparameter">
- <title>MySqlParameter</title>
+ <title>Using <literal>MySqlParameter</literal></title>
<para>
Parameter names are not case sensitive.
@@ -5707,7 +5715,7 @@
<section id="connector-net-examples-mysqlparametercollection">
- <title>MySqlParameterCollection</title>
+ <title>Using <literal>MySqlParameterCollection</literal></title>
<para>
The number of the parameters in the collection must be equal to
@@ -5765,7 +5773,7 @@
<section id="connector-net-examples-mysqltransaction">
- <title>MySqlTransaction</title>
+ <title>Using <literal>MySqlTransaction</literal></title>
<para>
Represents a SQL transaction to be made in a MySQL database.
@@ -6158,7 +6166,7 @@
<section id="connector-net-ref-mysqlclient">
- <title>MySql.Data.MySqlClient</title>
+ <title><literal>MySql.Data.MySqlClient</literal></title>
<para>
<link linkend="connector-net-ref-mysqlclienthierarchy">Namespace
@@ -6346,7 +6354,7 @@
<section id="connector-net-ref-mysqlclienthierarchy">
- <title>MySql.Data.MySqlClientHierarchy</title>
+ <title><literal>MySql.Data.MySqlClientHierarchy</literal></title>
<para>
<emphasis role="bold">See Also</emphasis>
@@ -6361,7 +6369,7 @@
<section id="connector-net-ref-mysqlclient-mysqlcommand">
- <title>MySqlCommand Class</title>
+ <title><literal>MySqlCommand</literal> Class</title>
<para>
For a list of all members of this type, see
@@ -6424,7 +6432,7 @@
<section id="connector-net-ref-mysqlclient-mysqlcommandmembers">
- <title>MySqlCommand Members</title>
+ <title><literal>MySqlCommand</literal> Members</title>
<para>
<link linkend="connector-net-ref-mysqlclient-mysqlcommand"
@@ -6646,7 +6654,7 @@
<section id="connector-net-ref-mysqlclient-mysqlcommandconstructor">
- <title>MySqlCommand Constructor</title>
+ <title><literal>MySqlCommand</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -6723,7 +6731,7 @@
<section id="connector-net-ref-mysqlclient-mysqlcommandconstructor1">
- <title>MySqlCommand Constructor ()</title>
+ <title><literal>MySqlCommand</literal> Constructor ()</title>
<para>
Initializes a new instance of the
@@ -6766,7 +6774,7 @@
<section id="connector-net-ref-mysqlclient-mysqlcommandconstructor2">
- <title>MySqlCommand Constructor (String)</title>
+ <title><literal>MySqlCommand</literal> Constructor (String)</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -6805,7 +6813,7 @@
<section id="connector-net-ref-mysqlclient-mysqlcommandconstructor3">
- <title>MySqlCommand Constructor (String, MySqlConnection)</title>
+ <title><literal>MySqlCommand</literal> Constructor</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -6844,7 +6852,7 @@
<section id="connector-net-ref-mysqlclient-mysqlconnection">
- <title>MySqlConnection Class</title>
+ <title><literal>MySqlConnection</literal> Class</title>
<para>
For a list of all members of this type, see
@@ -6910,7 +6918,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnectionmembers">
- <title>MySqlConnection Members</title>
+ <title><literal>MySqlConnection</literal> Members</title>
<para>
<link
@@ -7147,7 +7155,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnectionconstructor">
- <title>MySqlConnection Constructor</title>
+ <title><literal>MySqlConnection</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -7209,7 +7217,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnectionconstructor1">
- <title>MySqlConnection Constructor ()</title>
+ <title><literal>MySqlConnection</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -7256,7 +7264,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnectionconstructor2">
- <title>MySqlConnection Constructor (String)</title>
+ <title><literal>MySqlConnection</literal> Constructor</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -7687,7 +7695,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnection-begintransaction-overload-1">
- <title>MySqlConnection.BeginTransaction Method ()</title>
+ <title><literal>MySqlConnection.BeginTransaction</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -7724,7 +7732,7 @@
<section
id="connector-net-ref-mysqlclient-mysqltransaction">
- <title>MySqlTransaction Class</title>
+ <title><literal>MySqlTransaction</literal> Class</title>
<para>
For a list of all members of this type, see
@@ -7792,7 +7800,7 @@
<section
id="connector-net-ref-mysqlclient-mysqltransactionmembers">
- <title>MySqlTransaction Members</title>
+ <title><literal>MySqlTransaction</literal> Members</title>
<para>
<link
@@ -8044,7 +8052,7 @@
<section
id="connector-net-ref-mysqlclient-mysqltransaction-commit">
- <title>MySqlTransaction.Commit Method</title>
+ <title><literal>MySqlTransaction.Commit</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -8090,7 +8098,7 @@
<section
id="connector-net-ref-mysqlclient-mysqltransaction-rollback">
- <title>MySqlTransaction.Rollback Method</title>
+ <title><literal>MySqlTransaction.Rollback</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -8142,7 +8150,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnection-begintransaction-overload-2">
- <title>MySqlConnection.BeginTransaction Method (IsolationLevel)</title>
+ <title><literal>MySqlConnection.BeginTransaction</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -8187,7 +8195,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnection-changedatabase">
- <title>MySqlConnection.ChangeDatabase Method</title>
+ <title><literal>MySqlConnection.ChangeDatabase</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -8236,7 +8244,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnection-close">
- <title>MySqlConnection.Close Method</title>
+ <title><literal>MySqlConnection.Close</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -8281,7 +8289,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnection-createcommand">
- <title>MySqlConnection.CreateCommand Method</title>
+ <title><literal>MySqlConnection.CreateCommand</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -8316,7 +8324,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnection-open">
- <title>MySqlConnection.Open Method</title>
+ <title><literal>MySqlConnection.Open</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -8361,7 +8369,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnection-ping">
- <title>MySqlConnection.Ping Method</title>
+ <title><literal>MySqlConnection.Ping</literal> Method</title>
<para>
Ping
@@ -8404,7 +8412,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnection-infomessage">
- <title>MySqlConnection.InfoMessage Event</title>
+ <title><literal>MySqlConnection.InfoMessage</literal> Event</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -8437,7 +8445,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlinfomessageeventhandler">
- <title>MySqlInfoMessageEventHandler Delegate</title>
+ <title><literal>MySqlInfoMessageEventHandler</literal> Delegate</title>
<para>
Represents the method that will handle the
@@ -8498,7 +8506,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlinfomessageeventargs">
- <title>MySqlInfoMessageEventArgs Class</title>
+ <title><literal>MySqlInfoMessageEventArgs</literal> Class</title>
<para>
Provides data for the InfoMessage event. This
@@ -8571,7 +8579,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlinfomessageeventargsmembers">
- <title>MySqlInfoMessageEventArgs Members</title>
+ <title><literal>MySqlInfoMessageEventArgs</literal> Members</title>
<para>
<link
@@ -8699,7 +8707,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlinfomessageeventargsconstructor">
- <title>MySqlInfoMessageEventArgs Constructor</title>
+ <title><literal>MySqlInfoMessageEventArgs</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -8743,7 +8751,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlinfomessageeventargs-errors">
- <title>MySqlInfoMessageEventArgs.errors Field</title>
+ <title><literal>MySqlInfoMessageEventArgs.errors</literal> Field</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -8777,7 +8785,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlerror">
- <title>MySqlError Class</title>
+ <title><literal>MySqlError</literal> Class</title>
<para>
Collection of error codes that can be
@@ -8854,7 +8862,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlerrormembers">
- <title>MySqlError Members</title>
+ <title><literal>MySqlError</literal> Members</title>
<para>
<link
@@ -8993,7 +9001,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlerrorconstructor">
- <title>MySqlError Constructor</title>
+ <title><literal>MySqlError</literal> Constructor</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -9201,7 +9209,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlconnection-statechange">
- <title>MySqlConnection.StateChange Event</title>
+ <title><literal>MySqlConnection.StateChange</literal> Event</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -9241,7 +9249,7 @@
<section id="connector-net-ref-mysqlclient-mysqlcommandconstructor4">
- <title>MySqlCommand Constructor (String, MySqlConnection, MySqlTransaction)</title>
+ <title><literal>MySqlCommand</literal> Constructor</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -9504,7 +9512,7 @@
<section id="connector-net-ref-mysqlclient-mysqlparametercollection">
- <title>MySqlParameterCollection Class</title>
+ <title><literal>MySqlParameterCollection</literal> Class</title>
<para>
Represents a collection of parameters relevant to a
@@ -9578,7 +9586,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollectionmembers">
- <title>MySqlParameterCollection Members</title>
+ <title><literal>MySqlParameterCollection</literal> Members</title>
<para>
<link
@@ -9782,7 +9790,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollectionconstructor">
- <title>MySqlParameterCollection Constructor</title>
+ <title><literal>MySqlParameterCollection</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -9954,7 +9962,7 @@
<section id="connector-net-ref-mysqlclient-mysqlparameter">
- <title>MySqlParameter Class</title>
+ <title><literal>MySqlParameter</literal> Class</title>
<para>
Represents a parameter to a
@@ -10032,7 +10040,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametermembers">
- <title>MySqlParameter Members</title>
+ <title><literal>MySqlParameter</literal> Members</title>
<para>
<link
@@ -10084,7 +10092,7 @@
<entry>Gets or sets a value indicating whether the parameter is input-only,
output-only, bidirectional, or a stored
procedure return value parameter. As of
- MySql version 4.1 and earlier,
+ MySQL version 4.1 and earlier,
input-only is the only valid choice.</entry>
</row>
<row>
@@ -10242,7 +10250,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparameterconstructor">
- <title>MySqlParameter Constructor</title>
+ <title><literal>MySqlParameter</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -10409,7 +10417,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparameterconstructor1">
- <title>MySqlParameter Constructor ()</title>
+ <title><literal>MySqlParameter</literal> Constructor ()</title>
<para>
Initializes a new instance of the
@@ -10453,7 +10461,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparameterconstructor3">
- <title>MySqlParameter Constructor (String, MySqlDbType)</title>
+ <title><literal>MySqlParameter</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -10530,7 +10538,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldbtype">
- <title>MySqlDbType Enumeration</title>
+ <title><literal>MySqlDbType</literal> Enumeration</title>
<para>
Specifies MySQL specific data type of a
@@ -10778,7 +10786,8 @@
<section
id="connector-net-ref-mysqlclient-mysqlparameterconstructor4">
- <title>MySqlParameter Constructor (String, MySqlDbType, Int32)</title>
+ <title><literal>MySqlParameter</literal> Constructor (String, MySqlDbType,
+ Int32)</title>
<para>
Initializes a new instance of the
@@ -10869,9 +10878,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparameterconstructor6">
- <title>MySqlParameter Constructor (String, MySqlDbType, Int32,
- ParameterDirection, Boolean, Byte, Byte,
- String, DataRowVersion, Object)</title>
+ <title><literal>MySqlParameter</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -11112,7 +11119,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparameterconstructor5">
- <title>MySqlParameter Constructor (String, MySqlDbType, Int32, String)</title>
+ <title><literal>MySqlParameter</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -11212,7 +11219,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparameterconstructor2">
- <title>MySqlParameter Constructor (String, Object)</title>
+ <title><literal>MySqlParameter</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -11350,7 +11357,7 @@
Gets or sets a value indicating whether the
parameter is input-only, output-only,
bidirectional, or a stored procedure return
- value parameter. As of MySql version 4.1 and
+ value parameter. As of MySQL version 4.1 and
earlier, input-only is the only valid choice.
</para>
@@ -11484,7 +11491,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparameter-mysqldbtype">
- <title>MySqlDbType Property</title>
+ <title><literal>MySqlDbType</literal> Property</title>
<para>
Gets or sets the MySqlDbType of the parameter.
@@ -11845,7 +11852,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparameter-tostring">
- <title>MySqlParameter.ToString Method</title>
+ <title><literal>MySqlParameter.ToString</literal> Method</title>
<para>
Overridden. Gets a string containing the
@@ -12190,7 +12197,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-add-overload-2">
- <title>MySqlParameterCollection.Add Method (MySqlParameter)</title>
+ <title><literal>MySqlParameterCollection.Add</literal> Method</title>
<para>
Adds the specified
@@ -12275,7 +12282,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-add-overload-1">
- <title>MySqlParameterCollection.Add Method (Object)</title>
+ <title><literal>MySqlParameterCollection.Add</literal> Method</title>
<para>
Adds the specified
@@ -12370,7 +12377,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-add-overload-4">
- <title>MySqlParameterCollection.Add Method (String, MySqlDbType)</title>
+ <title><literal>MySqlParameterCollection.Add</literal> Method</title>
<para>
Adds a
@@ -12464,7 +12471,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-add-overload-5">
- <title>MySqlParameterCollection.Add Method (String, MySqlDbType, Int32)</title>
+ <title><literal>MySqlParameterCollection.Add</literal> Method</title>
<para>
Adds a
@@ -12568,7 +12575,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-add-overload-6">
- <title>MySqlParameterCollection.Add Method (String, MySqlDbType, Int32, String)</title>
+ <title><literal>MySqlParameterCollection.Add</literal> Method</title>
<para>
Adds a
@@ -12681,7 +12688,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-add-overload-3">
- <title>MySqlParameterCollection.Add Method (String, Object)</title>
+ <title><literal>MySqlParameterCollection.Add</literal> Method</title>
<para>
Adds a
@@ -12781,7 +12788,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-clear">
- <title>MySqlParameterCollection.Clear Method</title>
+ <title><literal>MySqlParameterCollection.Clear</literal> Method</title>
<para>
Removes all items from the collection.
@@ -12902,7 +12909,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-contains-overload-1">
- <title>MySqlParameterCollection.Contains Method (Object)</title>
+ <title><literal>MySqlParameterCollection.Contains</literal> Method</title>
<para>
Gets a value indicating whether a MySqlParameter
@@ -12990,7 +12997,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-contains-overload-2">
- <title>MySqlParameterCollection.Contains Method (String)</title>
+ <title><literal>MySqlParameterCollection.Contains</literal> Method</title>
<para>
Gets a value indicating whether a
@@ -13081,7 +13088,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-copyto">
- <title>MySqlParameterCollection.CopyTo Method</title>
+ <title><literal>MySqlParameterCollection.CopyTo</literal> Method</title>
<para>
Copies MySqlParameter objects from the
@@ -13231,7 +13238,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-indexof-overload-1">
- <title>MySqlParameterCollection.IndexOf Method (Object)</title>
+ <title><literal>MySqlParameterCollection.IndexOf</literal> Method</title>
<para>
Gets the location of a
@@ -13322,7 +13329,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-indexof-overload-2">
- <title>MySqlParameterCollection.IndexOf Method (String)</title>
+ <title><literal>MySqlParameterCollection.IndexOf</literal> Method</title>
<para>
Gets the location of the
@@ -13416,7 +13423,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-insert">
- <title>MySqlParameterCollection.Insert Method</title>
+ <title><literal>MySqlParameterCollection.Insert</literal> Method</title>
<para>
Inserts a MySqlParameter into the collection at the
@@ -13492,7 +13499,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-remove">
- <title>MySqlParameterCollection.Remove Method</title>
+ <title><literal>MySqlParameterCollection.Remove</literal> Method</title>
<para>
Removes the specified MySqlParameter from the
@@ -13634,7 +13641,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-removeat-overload-1">
- <title>MySqlParameterCollection.RemoveAt Method (Int32)</title>
+ <title><literal>MySqlParameterCollection.RemoveAt</literal> Method</title>
<para>
Removes the specified
@@ -13710,7 +13717,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlparametercollection-removeat-overload-2">
- <title>MySqlParameterCollection.RemoveAt Method (String)</title>
+ <title><literal>MySqlParameterCollection.RemoveAt</literal> Method</title>
<para>
Removes the specified
@@ -13870,7 +13877,7 @@
<section id="connector-net-ref-mysqlclient-mysqlcommand-cancel">
- <title>MySqlCommand.Cancel Method</title>
+ <title><literal>MySqlCommand.Cancel</literal> Method</title>
<para>
Attempts to cancel the execution of a MySqlCommand. This
@@ -13947,7 +13954,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommand-createparameter">
- <title>MySqlCommand.CreateParameter Method</title>
+ <title><literal>MySqlCommand.CreateParameter</literal> Method</title>
<para>
Creates a new instance of a
@@ -14008,7 +14015,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommand-executenonquery">
- <title>MySqlCommand.ExecuteNonQuery Method</title>
+ <title><literal>MySqlCommand.ExecuteNonQuery</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -14094,7 +14101,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommand-executereader-overload-1">
- <title>MySqlCommand.ExecuteReader Method ()</title>
+ <title><literal>MySqlCommand.ExecuteReader</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -14127,7 +14134,7 @@
<section id="connector-net-ref-mysqlclient-mysqldatareader">
- <title>MySqlDataReader Class</title>
+ <title><literal>MySqlDataReader</literal> Class</title>
<para>
Provides a means of reading a forward-only stream of
@@ -14199,7 +14206,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareadermembers">
- <title>MySqlDataReader Members</title>
+ <title><literal>MySqlDataReader</literal> Members</title>
<para>
<link
@@ -14953,7 +14960,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-close">
- <title>MySqlDataReader.Close Method</title>
+ <title><literal>MySqlDataReader.Close</literal> Method</title>
<para>
Closes the MySqlDataReader object.
@@ -15002,7 +15009,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getboolean">
- <title>MySqlDataReader.GetBoolean Method</title>
+ <title><literal>MySqlDataReader.GetBoolean</literal> Method</title>
<para>
Gets the value of the specified column as a
@@ -15074,7 +15081,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getbyte">
- <title>MySqlDataReader.GetByte Method</title>
+ <title><literal>MySqlDataReader.GetByte</literal> Method</title>
<para>
Gets the value of the specified column as a byte.
@@ -15145,7 +15152,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getbytes">
- <title>MySqlDataReader.GetBytes Method</title>
+ <title><literal>MySqlDataReader.GetBytes</literal> Method</title>
<para>
Reads a stream of bytes from the specified column
@@ -15260,7 +15267,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getchar">
- <title>MySqlDataReader.GetChar Method</title>
+ <title><literal>MySqlDataReader.GetChar</literal> Method</title>
<para>
Gets the value of the specified column as a single
@@ -15332,7 +15339,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getchars">
- <title>MySqlDataReader.GetChars Method</title>
+ <title><literal>MySqlDataReader.GetChars</literal> Method</title>
<para>
Reads a stream of characters from the specified
@@ -15437,7 +15444,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getdatatypename">
- <title>MySqlDataReader.GetDataTypeName Method</title>
+ <title><literal>MySqlDataReader.GetDataTypeName</literal> Method</title>
<para>
Gets the name of the source data type.
@@ -15508,7 +15515,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getdatetime">
- <title>MySqlDataReader.GetDateTime Method</title>
+ <title><literal>MySqlDataReader.GetDateTime</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -15557,7 +15564,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getdecimal">
- <title>MySqlDataReader.GetDecimal Method</title>
+ <title><literal>MySqlDataReader.GetDecimal</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -15606,7 +15613,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getdouble">
- <title>MySqlDataReader.GetDouble Method</title>
+ <title><literal>MySqlDataReader.GetDouble</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -15655,7 +15662,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getfieldtype">
- <title>MySqlDataReader.GetFieldType Method</title>
+ <title><literal>MySqlDataReader.GetFieldType</literal> Method</title>
<para>
Gets the Type that is the data type of the object.
@@ -15726,7 +15733,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getfloat">
- <title>MySqlDataReader.GetFloat Method</title>
+ <title><literal>MySqlDataReader.GetFloat</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -15775,7 +15782,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getguid">
- <title>MySqlDataReader.GetGuid Method</title>
+ <title><literal>MySqlDataReader.GetGuid</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -15824,7 +15831,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getint16">
- <title>MySqlDataReader.GetInt16 Method</title>
+ <title><literal>MySqlDataReader.GetInt16</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -15873,7 +15880,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getint32">
- <title>MySqlDataReader.GetInt32 Method</title>
+ <title><literal>MySqlDataReader.GetInt32</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -15922,7 +15929,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getint64">
- <title>MySqlDataReader.GetInt64 Method</title>
+ <title><literal>MySqlDataReader.GetInt64</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -15971,7 +15978,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getmysqldatetime">
- <title>MySqlDataReader.GetMySqlDateTime Method</title>
+ <title><literal>MySqlDataReader.GetMySqlDateTime</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -16010,7 +16017,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getname">
- <title>MySqlDataReader.GetName Method</title>
+ <title><literal>MySqlDataReader.GetName</literal> Method</title>
<para>
Gets the name of the specified column.
@@ -16081,7 +16088,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getordinal">
- <title>MySqlDataReader.GetOrdinal Method</title>
+ <title><literal>MySqlDataReader.GetOrdinal</literal> Method</title>
<para>
Gets the column ordinal, given the name of the
@@ -16153,7 +16160,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getschematable">
- <title>MySqlDataReader.GetSchemaTable Method</title>
+ <title><literal>MySqlDataReader.GetSchemaTable</literal> Method</title>
<para>
Returns a DataTable that describes the column
@@ -16207,7 +16214,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getstring">
- <title>MySqlDataReader.GetString Method</title>
+ <title><literal>MySqlDataReader.GetString</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -16256,7 +16263,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-gettimespan">
- <title>MySqlDataReader.GetTimeSpan Method</title>
+ <title><literal>MySqlDataReader.GetTimeSpan</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -16295,7 +16302,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getuint16">
- <title>MySqlDataReader.GetUInt16 Method</title>
+ <title><literal>MySqlDataReader.GetUInt16</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -16334,7 +16341,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getuint32">
- <title>MySqlDataReader.GetUInt32 Method</title>
+ <title><literal>MySqlDataReader.GetUInt32</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -16373,7 +16380,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getuint64">
- <title>MySqlDataReader.GetUInt64 Method</title>
+ <title><literal>MySqlDataReader.GetUInt64</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -16412,7 +16419,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getvalue">
- <title>MySqlDataReader.GetValue Method</title>
+ <title><literal>MySqlDataReader.GetValue</literal> Method</title>
<para>
Gets the value of the specified column in its
@@ -16484,7 +16491,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-getvalues">
- <title>MySqlDataReader.GetValues Method</title>
+ <title><literal>MySqlDataReader.GetValues</literal> Method</title>
<para>
Gets all attribute columns in the collection for
@@ -16556,7 +16563,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-isdbnull">
- <title>MySqlDataReader.IsDBNull Method</title>
+ <title><literal>MySqlDataReader.IsDBNull</literal> Method</title>
<para>
Gets a value indicating whether the column
@@ -16628,7 +16635,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-nextresult">
- <title>MySqlDataReader.NextResult Method</title>
+ <title><literal>MySqlDataReader.NextResult</literal> Method</title>
<para>
Advances the data reader to the next result, when
@@ -16682,7 +16689,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldatareader-read">
- <title>MySqlDataReader.Read Method</title>
+ <title><literal>MySqlDataReader.Read</literal> Method</title>
<para>
Advances the MySqlDataReader to the next record.
@@ -16741,7 +16748,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommand-executereader-overload-2">
- <title>MySqlCommand.ExecuteReader Method (CommandBehavior)</title>
+ <title><literal>MySqlCommand.ExecuteReader</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -16782,7 +16789,7 @@
<section id="connector-net-ref-mysqlclient-mysqlcommand-executescalar">
- <title>MySqlCommand.ExecuteScalar Method</title>
+ <title><literal>MySqlCommand.ExecuteScalar</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -16823,7 +16830,7 @@
<section id="connector-net-ref-mysqlclient-mysqlcommand-prepare">
- <title>MySqlCommand.Prepare Method</title>
+ <title><literal>MySqlCommand.Prepare</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -16868,7 +16875,7 @@
<section id="connector-net-ref-mysqlclient-mysqlcommandbuilder">
- <title>MySqlCommandBuilder Class</title>
+ <title><literal>MySqlCommandBuilder</literal> Class</title>
<para>
For a list of all members of this type, see
@@ -16931,7 +16938,7 @@
<section id="connector-net-ref-mysqlclient-mysqlcommandbuildermembers">
- <title>MySqlCommandBuilder Members</title>
+ <title><literal>MySqlCommandBuilder</literal> Members</title>
<para>
<link linkend="connector-net-ref-mysqlclient-mysqlcommandbuilder"
@@ -17192,7 +17199,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommandbuilder-deriveparameters-overload-1">
- <title>MySqlCommandBuilder.DeriveParameters Method (MySqlCommand)</title>
+ <title><literal>MySqlCommandBuilder.DeriveParameters</literal> Method</title>
<para>
Retrieves parameter information from the stored
@@ -17280,7 +17287,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommandbuilder-deriveparameters-overload-2">
- <title>MySqlCommandBuilder.DeriveParameters Method (MySqlCommand, Boolean)</title>
+ <title><literal>MySqlCommandBuilder.DeriveParameters</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -17325,7 +17332,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommandbuilderconstructor">
- <title>MySqlCommandBuilder Constructor</title>
+ <title><literal>MySqlCommandBuilder</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -17403,7 +17410,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommandbuilderconstructor1">
- <title>MySqlCommandBuilder Constructor ()</title>
+ <title><literal>MySqlCommandBuilder</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -17448,7 +17455,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommandbuilderconstructor3">
- <title>MySqlCommandBuilder Constructor (MySqlDataAdapter)</title>
+ <title><literal>MySqlCommandBuilder</literal> Constructor</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -17486,7 +17493,7 @@
<section id="connector-net-ref-mysqlclient-mysqldataadapter">
- <title>MySqlDataAdapter Class</title>
+ <title><literal>MySqlDataAdapter</literal> Class</title>
<para>
For a list of all members of this type, see
@@ -17551,7 +17558,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldataadaptermembers">
- <title>MySqlDataAdapter Members</title>
+ <title><literal>MySqlDataAdapter</literal> Members</title>
<para>
<link
@@ -17836,7 +17843,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldataadapterconstructor">
- <title>MySqlDataAdapter Constructor</title>
+ <title><literal>MySqlDataAdapter</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -17916,7 +17923,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldataadapterconstructor1">
- <title>MySqlDataAdapter Constructor ()</title>
+ <title><literal>MySqlDataAdapter</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -17963,7 +17970,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldataadapterconstructor2">
- <title>MySqlDataAdapter Constructor (MySqlCommand)</title>
+ <title><literal>MySqlDataAdapter</literal> Constructor</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -18006,7 +18013,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldataadapterconstructor3">
- <title>MySqlDataAdapter Constructor (String, MySqlConnection)</title>
+ <title><literal>MySqlDataAdapter</literal> Constructor</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -18051,7 +18058,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldataadapterconstructor4">
- <title>MySqlDataAdapter Constructor (String, String)</title>
+ <title><literal>MySqlDataAdapter</literal> Constructor</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -18238,7 +18245,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldataadapter-rowupdated">
- <title>MySqlDataAdapter.RowUpdated Event</title>
+ <title><literal>MySqlDataAdapter.RowUpdated</literal> Event</title>
<para>
Occurs during Update after a command is executed
@@ -18340,7 +18347,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlrowupdatedeventhandler">
- <title>MySqlRowUpdatedEventHandler Delegate</title>
+ <title><literal>MySqlRowUpdatedEventHandler</literal> Delegate</title>
<para>
Represents the method that will handle the
@@ -18398,7 +18405,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlrowupdatedeventargs">
- <title>MySqlRowUpdatedEventArgs Class</title>
+ <title><literal>MySqlRowUpdatedEventArgs</literal> Class</title>
<para>
Provides data for the RowUpdated event. This
@@ -18471,7 +18478,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlrowupdatedeventargsmembers">
- <title>MySqlRowUpdatedEventArgs Members</title>
+ <title><literal>MySqlRowUpdatedEventArgs</literal> Members</title>
<para>
<link
@@ -18607,7 +18614,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlrowupdatedeventargsconstructor">
- <title>MySqlRowUpdatedEventArgs Constructor</title>
+ <title><literal>MySqlRowUpdatedEventArgs</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -18746,7 +18753,7 @@
<section
id="connector-net-ref-mysqlclient-mysqldataadapter-rowupdating">
- <title>MySqlDataAdapter.RowUpdating Event</title>
+ <title><literal>MySqlDataAdapter.RowUpdating</literal> Event</title>
<para>
Occurs during Update before a command is executed
@@ -18840,7 +18847,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlrowupdatingeventhandler">
- <title>MySqlRowUpdatingEventHandler Delegate</title>
+ <title><literal>MySqlRowUpdatingEventHandler</literal> Delegate</title>
<para>
Represents the method that will handle the
@@ -18898,7 +18905,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlrowupdatingeventargs">
- <title>MySqlRowUpdatingEventArgs Class</title>
+ <title><literal>MySqlRowUpdatingEventArgs</literal> Class</title>
<para>
Provides data for the RowUpdating event. This
@@ -18971,7 +18978,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlrowupdatingeventargsmembers">
- <title>MySqlRowUpdatingEventArgs Members</title>
+ <title><literal>MySqlRowUpdatingEventArgs</literal> Members</title>
<para>
<link
@@ -19094,7 +19101,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlrowupdatingeventargsconstructor">
- <title>MySqlRowUpdatingEventArgs Constructor</title>
+ <title><literal>MySqlRowUpdatingEventArgs</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -19238,7 +19245,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommandbuilderconstructor4">
- <title>MySqlCommandBuilder Constructor (MySqlDataAdapter, Boolean)</title>
+ <title><literal>MySqlCommandBuilder</literal> Constructor</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -19281,7 +19288,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommandbuilderconstructor2">
- <title>MySqlCommandBuilder Constructor (Boolean)</title>
+ <title><literal>MySqlCommandBuilder</literal> Constructor</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -19420,7 +19427,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommandbuilder-getdeletecommand">
- <title>MySqlCommandBuilder.GetDeleteCommand Method</title>
+ <title><literal>MySqlCommandBuilder.GetDeleteCommand</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -19452,7 +19459,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommandbuilder-getinsertcommand">
- <title>MySqlCommandBuilder.GetInsertCommand Method</title>
+ <title><literal>MySqlCommandBuilder.GetInsertCommand</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -19484,7 +19491,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommandbuilder-getupdatecommand">
- <title>MySqlCommandBuilder.GetUpdateCommand Method</title>
+ <title><literal>MySqlCommandBuilder.GetUpdateCommand</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -19516,7 +19523,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlcommandbuilder-refreshschema">
- <title>MySqlCommandBuilder.RefreshSchema Method</title>
+ <title><literal>MySqlCommandBuilder.RefreshSchema</literal> Method</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -19551,7 +19558,7 @@
<section id="connector-net-ref-mysqlclient-mysqlexception">
- <title>MySqlException Class</title>
+ <title><literal>MySqlException</literal> Class</title>
<para>
The exception that is thrown when MySQL returns an error. This
@@ -19618,7 +19625,7 @@
<section id="connector-net-ref-mysqlclient-mysqlexceptionmembers">
- <title>MySqlException Members</title>
+ <title><literal>MySqlException</literal> Members</title>
<para>
<link linkend="connector-net-ref-mysqlclient-mysqlexception"
@@ -19771,7 +19778,7 @@
<section id="connector-net-ref-mysqlclient-mysqlhelper">
- <title>MySqlHelper Class</title>
+ <title><literal>MySqlHelper</literal> Class</title>
<para>
Helper class that makes it easier to work with the provider.
@@ -19836,7 +19843,7 @@
<section id="connector-net-ref-mysqlclient-mysqlhelpermembers">
- <title>MySqlHelper Members</title>
+ <title><literal>MySqlHelper</literal> Members</title>
<para>
<link linkend="connector-net-ref-mysqlclient-mysqlhelper"
@@ -19949,7 +19956,7 @@
<section id="connector-net-ref-mysqlclient-mysqlhelper-executedatarow">
- <title>MySqlHelper.ExecuteDataRow Method</title>
+ <title><literal>MySqlHelper.ExecuteDataRow</literal> Method</title>
<para>
Executes a single SQL command and returns the first row of
@@ -20148,7 +20155,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlhelper-executedataset-overload-3">
- <title>MySqlHelper.ExecuteDataset Method (MySqlConnection, String)</title>
+ <title><literal>MySqlHelper.ExecuteDataset</literal> Method</title>
<para>
Executes a single SQL command and returns the resultset
@@ -20231,8 +20238,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlhelper-executedataset-overload-4">
- <title>MySqlHelper.ExecuteDataset Method (MySqlConnection, String,
- MySqlParameter[])</title>
+ <title><literal>MySqlHelper.ExecuteDataset</literal> Method</title>
<para>
Executes a single SQL command and returns the resultset
@@ -20324,7 +20330,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlhelper-executedataset-overload-1">
- <title>MySqlHelper.ExecuteDataset Method (String, String)</title>
+ <title><literal>MySqlHelper.ExecuteDataset</literal> Method</title>
<para>
Executes a single SQL command and returns the resultset
@@ -20401,7 +20407,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlhelper-executedataset-overload-2">
- <title>MySqlHelper.ExecuteDataset Method (String, String, MySqlParameter[])</title>
+ <title><literal>MySqlHelper.ExecuteDataset</literal> Method</title>
<para>
Executes a single SQL command and returns the resultset
@@ -20569,8 +20575,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlhelper-executenonquery-overload-1">
- <title>MySqlHelper.ExecuteNonQuery Method (MySqlConnection, String,
- MySqlParameter[])</title>
+ <title><literal>MySqlHelper.ExecuteNonQuery</literal> Method</title>
<para>
Executes a single command against a MySQL database. The
@@ -20661,7 +20666,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlhelper-executenonquery-overload-2">
- <title>MySqlHelper.ExecuteNonQuery Method (String, String, MySqlParameter[])</title>
+ <title><literal>MySqlHelper.ExecuteNonQuery</literal> Method</title>
<para>
Executes a single command against a MySQL database. A
@@ -20821,7 +20826,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlhelper-executereader-overload-1">
- <title>MySqlHelper.ExecuteReader Method (String, String)</title>
+ <title><literal>MySqlHelper.ExecuteReader</literal> Method</title>
<para>
Executes a single command against a MySQL database.
@@ -20898,7 +20903,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlhelper-executereader-overload-2">
- <title>MySqlHelper.ExecuteReader Method (String, String, MySqlParameter[])</title>
+ <title><literal>MySqlHelper.ExecuteReader</literal> Method</title>
<para>
Executes a single command against a MySQL database.
@@ -21087,7 +21092,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlhelper-executescalar-overload-3">
- <title>MySqlHelper.ExecuteScalar Method (MySqlConnection, String)</title>
+ <title><literal>MySqlHelper.ExecuteScalar</literal> Method</title>
<para>
Execute a single command against a MySQL database.
@@ -21167,8 +21172,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlhelper-executescalar-overload-4">
- <title>MySqlHelper.ExecuteScalar Method (MySqlConnection, String,
- MySqlParameter[])</title>
+ <title><literal>MySqlHelper.ExecuteScalar</literal> Method</title>
<para>
Execute a single command against a MySQL database.
@@ -21257,7 +21261,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlhelper-executescalar-overload-1">
- <title>MySqlHelper.ExecuteScalar Method (String, String)</title>
+ <title><literal>MySqlHelper.ExecuteScalar</literal> Method</title>
<para>
Execute a single command against a MySQL database.
@@ -21334,7 +21338,7 @@
<section
id="connector-net-ref-mysqlclient-mysqlhelper-executescalar-overload-2">
- <title>MySqlHelper.ExecuteScalar Method (String, String, MySqlParameter[])</title>
+ <title><literal>MySqlHelper.ExecuteScalar</literal> Method</title>
<para>
Execute a single command against a MySQL database.
@@ -21421,7 +21425,7 @@
<section id="connector-net-ref-mysqlclient-mysqlhelper-updatedataset">
- <title>MySqlHelper.UpdateDataSet Method</title>
+ <title><literal>MySqlHelper.UpdateDataSet</literal> Method</title>
<para>
Updates the given table with data from the given DataSet
@@ -21506,7 +21510,7 @@
<section id="connector-net-ref-mysqlclient-mysqlerrorcode">
- <title>MySqlErrorCode Enumeration</title>
+ <title><literal>MySqlErrorCode</literal> Enumeration</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -21602,7 +21606,7 @@
<section id="connector-net-ref-types">
- <title>MySql.Data.Types</title>
+ <title><literal>MySql.Data.Types</literal></title>
<para>
<link linkend="connector-net-ref-typeshierarchy">Namespace
@@ -21643,7 +21647,7 @@
<section id="connector-net-ref-typeshierarchy">
- <title>MySql.Data.TypesHierarchy</title>
+ <title><literal>MySql.Data.TypesHierarchy</literal></title>
<para>
<emphasis role="bold">See Also</emphasis>
@@ -21658,7 +21662,7 @@
<section id="connector-net-ref-types-mysqlconversionexception">
- <title>MySqlConversionException Class</title>
+ <title><literal>MySqlConversionException</literal> Class</title>
<para>
Summary description for MySqlConversionException.
@@ -21725,7 +21729,7 @@
<section id="connector-net-ref-types-mysqlconversionexceptionmembers">
- <title>MySqlConversionException Members</title>
+ <title><literal>MySqlConversionException</literal> Members</title>
<para>
<link linkend="connector-net-ref-types-mysqlconversionexception"
@@ -21897,7 +21901,7 @@
<section
id="connector-net-ref-types-mysqlconversionexceptionconstructor">
- <title>MySqlConversionException Constructor</title>
+ <title><literal>MySqlConversionException</literal> Constructor</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -21936,7 +21940,7 @@
<section id="connector-net-ref-types-mysqldatetime">
- <title>MySqlDateTime Class</title>
+ <title><literal>MySqlDateTime</literal> Class</title>
<para>
Summary description for MySqlDateTime.
@@ -22002,7 +22006,7 @@
<section id="connector-net-ref-types-mysqldatetimemembers">
- <title>MySqlDateTime Members</title>
+ <title><literal>MySqlDateTime</literal> Members</title>
<para>
<link linkend="connector-net-ref-types-mysqldatetime">MySqlDateTime
@@ -22225,7 +22229,9 @@
<section id="connector-net-ref-types-mysqldatetime-op-explicit">
- <title>MySqlDateTime Explicit MySqlDateTime to DateTime Conversion</title>
+ <title><literal>MySqlDateTime</literal> Explicit
+ <literal>MySqlDateTime</literal> to
+ <literal>DateTime</literal> Conversion</title>
<para>
<emphasis role="bold">Syntax: Visual Basic</emphasis>
@@ -22374,7 +22380,7 @@
<section id="connector-net-ref-types-mysqlvalue">
- <title>MySqlValue Class</title>
+ <title><literal>MySqlValue</literal> Class</title>
<para>
For a list of all members of this type, see
@@ -22434,7 +22440,7 @@
<section id="connector-net-ref-types-mysqlvaluemembers">
- <title>MySqlValue Members</title>
+ <title><literal>MySqlValue</literal> Members</title>
<para>
<link linkend="connector-net-ref-types-mysqlvalue">MySqlValue
@@ -22634,7 +22640,7 @@
<section id="connector-net-ref-types-mysqlvalue-numberformat">
- <title>MySqlValue.numberFormat Field</title>
+ <title><literal>MySqlValue.numberFormat</literal> Field</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -22666,7 +22672,7 @@
<section id="connector-net-ref-types-mysqlvalueconstructor">
- <title>MySqlValue Constructor</title>
+ <title><literal>MySqlValue</literal> Constructor</title>
<para>
Initializes a new instance of the
@@ -22742,7 +22748,7 @@
<section id="connector-net-ref-types-mysqlvalue-tostring">
- <title>MySqlValue.ToString Method</title>
+ <title><literal>MySqlValue.ToString</literal> Method</title>
<para>
Returns a string representation of this value
@@ -22778,7 +22784,7 @@
<section id="connector-net-ref-types-mysqlvalue-classtype">
- <title>MySqlValue.classType Field</title>
+ <title><literal>MySqlValue.classType</literal> Field</title>
<para>
The system type represented by this value
@@ -22814,7 +22820,7 @@
<section id="connector-net-ref-types-mysqlvalue-dbtype">
- <title>MySqlValue.dbType Field</title>
+ <title><literal>MySqlValue.dbType</literal> Field</title>
<para>
The generic dbtype of this value
@@ -22850,7 +22856,7 @@
<section id="connector-net-ref-types-mysqlvalue-mysqldbtype">
- <title>MySqlValue.mySqlDbType Field</title>
+ <title><literal>MySqlValue.mySqlDbType</literal> Field</title>
<para>
The specific MySQL db type
@@ -22886,7 +22892,7 @@
<section id="connector-net-ref-types-mysqlvalue-mysqltypename">
- <title>MySqlValue.mySqlTypeName Field</title>
+ <title><literal>MySqlValue.mySqlTypeName</literal> Field</title>
<para>
The MySQL specific typename of this value
@@ -22922,7 +22928,7 @@
<section id="connector-net-ref-types-mysqlvalue-objectvalue">
- <title>MySqlValue.objectValue Field</title>
+ <title><literal>MySqlValue.objectValue</literal> Field</title>
<para>
<emphasis role="bold">Syntax: Visual
@@ -23136,7 +23142,7 @@
<section id="connector-net-ref-types-mysqldatetime-getdatetime">
- <title>MySqlDateTime.GetDateTime Method</title>
+ <title><literal>MySqlDateTime.GetDateTime</literal> Method</title>
<para>
Returns this value as a DateTime
@@ -23171,7 +23177,7 @@
<section id="connector-net-ref-types-mysqldatetime-tostring">
- <title>MySqlDateTime.ToString Method</title>
+ <title><literal>MySqlDateTime.ToString</literal> Method</title>
<para>
Returns a MySQL specific string representation of this
@@ -23777,11 +23783,7 @@
of the <literal>MySqlCommand.Parameters</literal> collection.
</para>
- <formalpara>
- <title>Note:</title>
-
-
-
+ <note>
<para>
When you call a stored procedure, the command object makes
an additional <literal>SELECT</literal> call to determine
@@ -23792,7 +23794,7 @@
the parameters. Failure to do this will result in an error
when calling the procedure.
</para>
- </formalpara>
+ </note>
<para>
This section will not provide in-depth information on creating
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r5012 - trunk/refman-common | mcbrown | 21 Feb |