You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/data-factory/connector-mysql.md
+43-43Lines changed: 43 additions & 43 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -265,49 +265,49 @@ If you were using `RelationalSource` typed source, it is still supported as-is,
265
265
266
266
When copying data from MySQL, the following mappings are used from MySQL data types to interim data types used by the service internally. See [Schema and data type mappings](copy-activity-schema-and-type-mapping.md) to learn about how copy activity maps the source schema and data type to the sink.
267
267
268
-
| MySQL data type | Interim service data type |
269
-
|:--- |:--- |
270
-
|`bigint`|`Int64`|
271
-
|`bigint unsigned`|`Decimal`|
272
-
|`bit(1)`|`UInt64`|
273
-
|`bit(M), M>1`|`UInt64`|
274
-
|`blob`|`Byte[]`|
275
-
|`bool`|`Boolean` <br/>(If TreatTinyAsBoolean=false, it is mapped as `SByte`. TreatTinyAsBoolean is true by defult ) |
276
-
|`char`|`String`|
277
-
|`date`|`Datetime`|
278
-
|`datetime`|`Datetime`|
279
-
|`decimal`|`Decimal`|
280
-
|`double`|`Double`|
281
-
|`double precision`|`Double`|
282
-
|`enum`|`String`|
283
-
|`float`|`Single`|
284
-
|`int`|`Int32`|
285
-
|`int unsigned`|`Int64`|
286
-
|`integer`|`Int32`|
287
-
|`integer unsigned`|`Int64`|
288
-
|`JSON`|`String`|
289
-
|`long varbinary`|`Byte[]`|
290
-
|`long varchar`|`String`|
291
-
|`longblob`|`Byte[]`|
292
-
|`longtext`|`String`|
293
-
|`mediumblob`|`Byte[]`|
294
-
|`mediumint`|`Int32`|
295
-
|`mediumint unsigned`|`Int64`|
296
-
|`mediumtext`|`String`|
297
-
|`numeric`|`Decimal`|
298
-
|`real`|`Double`|
299
-
|`set`|`String`|
300
-
|`smallint`|`Int16`|
301
-
|`smallint unsigned`|`Int32`|
302
-
|`text`|`String`|
303
-
|`time`|`TimeSpan`|
304
-
|`timestamp`|`Datetime`|
305
-
|`tinyblob`|`Byte[]`|
306
-
|`tinyint`|`SByte`|
307
-
|`tinyint unsigned`|`Int16`|
308
-
|`tinytext`|`String`|
309
-
|`varchar`|`String`|
310
-
|`year`|`Int`|
268
+
| MySQL data type | Interim service data type | Interim service data type (for the legacy driver version) |
269
+
|:--- |:--- |:--- |
270
+
|`bigint`|`Int64`|`Int64`|
271
+
|`bigint unsigned`|`Decimal`|`Decimal`|
272
+
|`bit(1)`|`UInt64`|`Boolean`|
273
+
|`bit(M), M>1`|`UInt64`|`Byte[]`|
274
+
|`blob`|`Byte[]`|`Byte[]`|
275
+
|`bool`|`Boolean` <br/>(If TreatTinyAsBoolean=false, it is mapped as `SByte`. TreatTinyAsBoolean is true by defult ) |`Int16`|
0 commit comments