Skip to content

Commit d3a3607

Browse files
committed
Add documentation for MySqlConnectorFactory.
1 parent 1a6ba3f commit d3a3607

17 files changed

+150
-12
lines changed

docs/content/api/MySqlConnector/MySqlConnectorFactory/CanCreateBatch.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title: CanCreateBatch
44

55
# MySqlConnectorFactory.CanCreateBatch property
66

7+
Returns `true`.
8+
79
```csharp
810
public bool CanCreateBatch { get; }
911
```
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: CanCreateCommandBuilder
3+
---
4+
5+
# MySqlConnectorFactory.CanCreateCommandBuilder property
6+
7+
Returns `true`.
8+
9+
```csharp
10+
public override bool CanCreateCommandBuilder { get; }
11+
```
12+
13+
## See Also
14+
15+
* class [MySqlConnectorFactory](../../MySqlConnectorFactoryType/)
16+
* namespace [MySqlConnector](../../MySqlConnectorFactoryType/)
17+
* assembly [MySqlConnector](../../../MySqlConnectorAssembly/)
18+
19+
<!-- DO NOT EDIT: generated by xmldocmd for MySqlConnector.dll -->
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: CanCreateDataAdapter
3+
---
4+
5+
# MySqlConnectorFactory.CanCreateDataAdapter property
6+
7+
Returns `true`.
8+
9+
```csharp
10+
public override bool CanCreateDataAdapter { get; }
11+
```
12+
13+
## See Also
14+
15+
* class [MySqlConnectorFactory](../../MySqlConnectorFactoryType/)
16+
* namespace [MySqlConnector](../../MySqlConnectorFactoryType/)
17+
* assembly [MySqlConnector](../../../MySqlConnectorAssembly/)
18+
19+
<!-- DO NOT EDIT: generated by xmldocmd for MySqlConnector.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: CanCreateDataSourceEnumerator
3+
---
4+
5+
# MySqlConnectorFactory.CanCreateDataSourceEnumerator property
6+
7+
Returns `false`.
8+
9+
```csharp
10+
public override bool CanCreateDataSourceEnumerator { get; }
11+
```
12+
13+
## Remarks
14+
15+
DbDataSourceEnumerator is not supported by MySqlConnector.
16+
17+
## See Also
18+
19+
* class [MySqlConnectorFactory](../../MySqlConnectorFactoryType/)
20+
* namespace [MySqlConnector](../../MySqlConnectorFactoryType/)
21+
* assembly [MySqlConnector](../../../MySqlConnectorAssembly/)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for MySqlConnector.dll -->

docs/content/api/MySqlConnector/MySqlConnectorFactory/CreateBatch.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title: CreateBatch
44

55
# MySqlConnectorFactory.CreateBatch method
66

7+
Creates a new [`MySqlBatch`](../../MySqlBatchType/) object.
8+
79
```csharp
810
public MySqlBatch CreateBatch()
911
```

docs/content/api/MySqlConnector/MySqlConnectorFactory/CreateBatchCommand.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title: CreateBatchCommand
44

55
# MySqlConnectorFactory.CreateBatchCommand method
66

7+
Creates a new [`MySqlBatchCommand`](../../MySqlBatchCommandType/) object.
8+
79
```csharp
810
public MySqlBatchCommand CreateBatchCommand()
911
```

docs/content/api/MySqlConnector/MySqlConnectorFactory/CreateCommand.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title: CreateCommand
44

55
# MySqlConnectorFactory.CreateCommand method
66

7+
Creates a new [`MySqlCommand`](../../MySqlCommandType/) object.
8+
79
```csharp
810
public override DbCommand CreateCommand()
911
```

docs/content/api/MySqlConnector/MySqlConnectorFactory/CreateCommandBuilder.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title: CreateCommandBuilder
44

55
# MySqlConnectorFactory.CreateCommandBuilder method
66

7+
Creates a new [`MySqlCommandBuilder`](../../MySqlCommandBuilderType/) object.
8+
79
```csharp
810
public override DbCommandBuilder CreateCommandBuilder()
911
```

docs/content/api/MySqlConnector/MySqlConnectorFactory/CreateConnection.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title: CreateConnection
44

55
# MySqlConnectorFactory.CreateConnection method
66

7+
Creates a new [`MySqlConnection`](../../MySqlConnectionType/) object.
8+
79
```csharp
810
public override DbConnection CreateConnection()
911
```

docs/content/api/MySqlConnector/MySqlConnectorFactory/CreateConnectionStringBuilder.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title: CreateConnectionStringBuilder
44

55
# MySqlConnectorFactory.CreateConnectionStringBuilder method
66

7+
Creates a new [`MySqlConnectionStringBuilder`](../../MySqlConnectionStringBuilderType/) object.
8+
79
```csharp
810
public override DbConnectionStringBuilder CreateConnectionStringBuilder()
911
```

0 commit comments

Comments
 (0)