Skip to content

Commit d82ca71

Browse files
committed
Merge branch 'MySQL_Dev'
2 parents 815d365 + a3af4c3 commit d82ca71

35 files changed

+2174
-254
lines changed

.vs/ODBCDirect/v15/.suo

7.5 KB
Binary file not shown.

.vs/ODBCDirect/v16/.suo

57 KB
Binary file not shown.

New Logo/PostgreSQL.png

-12 KB
Loading

New Logo/image-12.png

64.7 KB
Loading

New Logo/postgreSQL HiRez.jpg

30.5 KB
Loading

ODBCMySQLDirect/ODBCMySQLDirect.pq

+5-84
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ section ODBCMySQLDirect;
77
// no-op and simply returns the original value.
88
EnableTraceOutput = true;
99

10-
Config_DriverName = "PostgreSQL Unicode(x64)";
10+
Config_DriverName = "MySQL ODBC 8.0 Unicode (x64)";
1111
Config_SqlConformance = 8; // (SQL_SC) null, 1, 2, 4, 8
1212
Config_GroupByCapabilities = 2; // (SQL_GB) 0, 1, 2, 3, 4
1313
Config_FractionalSecondsScale = 3; //set
@@ -77,37 +77,9 @@ shared ODBCMySQLDirect.Database = (dsn as text) as table =>
7777
[
7878
Text = Text.Format("#{0} #{1}", {offset, limit}),
7979
Location = "AfterQuerySpecification"
80-
],
81-
Constant =
82-
let
83-
Quote = each Text.Format("'#{0}'", { _ }),
84-
Cast = (value, typeName) => [
85-
Text = Text.Format("CAST(#{0} as #{1})", { value, typeName })
86-
],
87-
Visitor = [
88-
// This is to work around parameters being converted to VARCHAR
89-
// and to work around driver crash when using TYPE_TIME parameters.
90-
NUMERIC = each Cast(_, "NUMERIC"),
91-
DECIMAL = each Cast(_, "DECIMAL"),
92-
INTEGER = each Cast(_, "INTEGER"),
93-
FLOAT = each Cast(_, "FLOAT"),
94-
REAL = each Cast(_, "REAL"),
95-
DOUBLE = each Cast(_, "DOUBLE"),
96-
DATE = each Cast(Quote(Date.ToText(_, "yyyy-MM-dd")), "DATE"),
97-
TEXT = each Cast(_, "WLONGVARCHAR"),
98-
TIMESTAMPTZ = each Cast(Quote(DateTime.ToText(_, "yyyy-MM-dd HH:mm:ss.sssssss")), "TIMESTAMP"),
99-
TIMETZ = each Cast(Quote(Time.ToText(_, "HH:mm:ss.sssssss")), "TIME"),
100-
UUID = each Cast(_, "GUID"),
101-
ORDER_STATUS = each Cast(_, "VARCHAR"),
102-
ORDER_TYPE = each Cast(_, "VARCHAR"),
103-
PAYMENT_BATCH_STATUS = each Cast(_, "VARCHAR"),
104-
PAYMENT_STATUS = each Cast(_, "VARCHAR"),
105-
PAYMENT_TYPE = each Cast(_, "VARCHAR"),
106-
TRANSACTION_ACTIVITY_TYPE = each Cast(_, "VARCHAR")
107-
]
108-
in
109-
(typeInfo, ast) => Record.FieldOrDefault(Visitor, typeInfo[TYPE_NAME], each null)(ast[Value])
80+
]
11081
],
82+
11183
// SQLGetTypeInfo can be specified in two ways:
11284
// 1. A #table() value that returns the same type information as an ODBC
11385
// call to SQLGetTypeInfo.
@@ -120,52 +92,7 @@ shared ODBCMySQLDirect.Database = (dsn as text) as table =>
12092
//
12193
// The sample implementation provided here will simply output the original table
12294
// to the user trace log, without any modification.
123-
SQLGetTypeInfo = (types) =>
124-
if (EnableTraceOutput <> true) then types else
125-
let
126-
// Outputting the entire table might be too large, and result in the value being truncated.
127-
// We can output a row at a time instead with Table.TransformRows()
128-
rows = Table.TransformRows(types, each Diagnostics.LogValue("SQLGetTypeInfo " & _[TYPE_NAME], _)),
129-
toTable = Table.FromRecords(rows)
130-
in
131-
Value.ReplaceType(toTable, Value.Type(types)),
132-
133-
// This is to work around the driver returning the deprecated
134-
// TIMESTAMP, DATE and TIME instead of TYPE_TIMESTAMP, TYPE_DATE and TYPE_TIME
135-
// for column metadata returned by SQLColumns. The column types also don't
136-
// match the types that are returned by SQLGetTypeInfo.
137-
SQLColumns = (catalogName, schemaName, tableName, columnName, source) =>
138-
let
139-
OdbcSqlType.DATETIME = 9,
140-
OdbcSqlType.TYPE_DATE = 91,
141-
OdbcSqlType.TIME = 10,
142-
OdbcSqlType.TYPE_TIME = 92,
143-
OdbcSqlType.TIMESTAMP = 11,
144-
OdbcSqlType.TYPE_TIMESTAMP = 93,
14595

146-
FixDataType = (dataType) =>
147-
if dataType = OdbcSqlType.DATETIME then
148-
OdbcSqlType.TYPE_DATE
149-
else if dataType = OdbcSqlType.TIME then
150-
OdbcSqlType.TYPE_TIME
151-
else if dataType = OdbcSqlType.TIMESTAMP then
152-
OdbcSqlType.TYPE_TIMESTAMP
153-
else
154-
dataType,
155-
Transform = Table.TransformColumns(source, { { "DATA_TYPE", FixDataType } })
156-
in
157-
if (EnableTraceOutput <> true) then Transform else
158-
// the if statement conditions will force the values to evaluated/written to diagnostics
159-
if (Diagnostics.LogValue("SQLColumns.TableName", tableName) <> "***" and Diagnostics.LogValue("SQLColumns.ColumnName", columnName) <> "***") then
160-
let
161-
// Outputting the entire table might be too large, and result in the value being truncated.
162-
// We can output a row at a time instead with Table.TransformRows()
163-
rows = Table.TransformRows(Transform, each Diagnostics.LogValue("SQLColumns", _)),
164-
toTable = Table.FromRecords(rows)
165-
in
166-
Value.ReplaceType(toTable, Value.Type(Transform))
167-
else
168-
Transform,
16996

17097
//
17198
// Call to Odbc.DataSource
@@ -178,7 +105,7 @@ shared ODBCMySQLDirect.Database = (dsn as text) as table =>
178105
// When HierarchialNavigation is set to true, the navigation tree
179106
// will be organized by Database -> Schema -> Table. When set to false,
180107
// all tables will be displayed in a flat list using fully qualified names.
181-
HierarchicalNavigation = false,
108+
HierarchicalNavigation = true,
182109
//Prevent exposure of Native Query
183110
HideNativeQuery = true,
184111
//Allows the M engine to select a compatible data type when conversion between two specific numeric types is not declared as supported in the SQL_CONVERT_* capabilities.
@@ -189,13 +116,7 @@ shared ODBCMySQLDirect.Database = (dsn as text) as table =>
189116
//Requires AstVisitor since Top is not supported in Postgres
190117
AstVisitor = AstVisitor,
191118
SqlCapabilities = SqlCapabilities,
192-
SQLGetInfo = SQLGetInfo,
193-
SQLColumns = SQLColumns,
194-
SQLGetTypeInfo = SQLGetTypeInfo
195-
/*
196-
ImplicitTypeConversions = ImplicitTypeConversions,
197-
OnError = OnError,
198-
*/
119+
SQLGetInfo = SQLGetInfo
199120
])
200121

201122
in OdbcDatasource;

ODBCMySQLDirect/ODBCMySQLDirect.query.pq

+1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
//Testing Not developed further because of Visual Studio / PowerBI Architecture mismatch (32 vs 64 bit.)
44
//https://github.com/Microsoft/DataConnectors/issues/158
55
let
6+
Source = ODBCMySQLDirect.Database("Example ODBC Source")
67
in
78
Source
32.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)