1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
|
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
|
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
"Use_SQLiteConvert_DefaultTypeName", null);
if (value == null)
return FallbackDefaultTypeName;
return value;
}
#if !NET_COMPACT_20 && TRACE_WARNING
/// <summary>
/// If applicable, issues a trace log message warning about falling back to
/// the default database type name.
/// </summary>
/// <param name="dbType">
/// Determines the type name for the given database value type.
/// The database value type.
/// </param>
/// <param name="flags">
/// The flags associated with the parent connection object.
/// </param>
/// <param name="typeName">
/// The textual name of the database type.
/// </param>
private static void DefaultTypeNameWarning(
DbType dbType,
SQLiteConnectionFlags flags,
string typeName
)
{
if ((flags & SQLiteConnectionFlags.TraceWarning) == SQLiteConnectionFlags.TraceWarning)
{
Trace.WriteLine(String.Format(
CultureInfo.CurrentCulture,
"WARNING: Type mapping failed, returning default name \"{0}\" for type {1}.",
typeName, dbType));
}
}
/// <summary>
/// If applicable, issues a trace log message warning about falling back to
/// the default database value type.
/// </summary>
/// <param name="typeName">
/// The textual name of the database type.
/// </param>
/// <param name="flags">
/// The flags associated with the parent connection object.
/// </param>
/// <param name="dbType">
/// The database value type.
/// </param>
private static void DefaultDbTypeWarning(
string typeName,
SQLiteConnectionFlags flags,
DbType? dbType
)
{
if (!String.IsNullOrEmpty(typeName) &&
((flags & SQLiteConnectionFlags.TraceWarning) == SQLiteConnectionFlags.TraceWarning))
{
Trace.WriteLine(String.Format(
CultureInfo.CurrentCulture,
"WARNING: Type mapping failed, returning default type {0} for name \"{1}\".",
dbType, typeName));
}
}
#endif
/// <summary>
/// For a given database value type, return the "closest-match" textual database type name.
/// </summary>
/// <param name="connection">The connection context for custom type mappings, if any.</param>
/// <param name="dbType">The database value type.</param>
/// <param name="flags">The flags associated with the parent connection object.</param>
/// <returns>The type name or an empty string if it cannot be determined.</returns>
internal static string DbTypeToTypeName(
SQLiteConnection connection,
|
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
|
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
|
+
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
-
+
|
//
// NOTE: Use the default database type name for the connection.
//
defaultTypeName = connection.DefaultTypeName;
}
if ((flags & SQLiteConnectionFlags.NoGlobalTypes) == SQLiteConnectionFlags.NoGlobalTypes)
{
return (defaultTypeName != null) ? defaultTypeName : GetDefaultTypeName();
if (defaultTypeName != null)
return defaultTypeName;
defaultTypeName = GetDefaultTypeName();
#if !NET_COMPACT_20 && TRACE_WARNING
DefaultTypeNameWarning(dbType, flags, defaultTypeName);
#endif
return defaultTypeName;
}
lock (_syncRoot)
{
if (_typeNames == null)
_typeNames = GetSQLiteDbTypeMap();
SQLiteDbTypeMapping value;
if (_typeNames.TryGetValue(dbType, out value))
return value.typeName;
}
#if !NET_COMPACT_20 && TRACE_WARNING
if ((flags & SQLiteConnectionFlags.TraceWarning) == SQLiteConnectionFlags.TraceWarning)
{
if (defaultTypeName != null)
return defaultTypeName;
Trace.WriteLine(String.Format(
CultureInfo.CurrentCulture,
"WARNING: Type mapping failed, returning default name \"{0}\" for type {1}.",
defaultTypeName, dbType));
}
defaultTypeName = GetDefaultTypeName();
#if !NET_COMPACT_20 && TRACE_WARNING
DefaultTypeNameWarning(dbType, flags, defaultTypeName);
#endif
return (defaultTypeName != null) ? defaultTypeName : GetDefaultTypeName();
return defaultTypeName;
}
/// <summary>
/// Convert a DbType to a Type
/// </summary>
/// <param name="typ">The DbType to convert from</param>
/// <returns>The closest-match .NET type</returns>
|
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
|
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
|
-
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
-
-
-
-
-
+
+
+
+
-
+
|
// do nothing.
}
return false;
}
/// <summary>
/// For a given type name, return a closest-match .NET type
/// For a given textual database type name, return the "closest-match" database type.
/// This method is called during query result processing; therefore, its performance
/// is critical.
/// </summary>
/// <param name="connection">The connection context for custom type mappings, if any.</param>
/// <param name="name">The name of the type to match</param>
/// <param name="typeName">The textual name of the database type to match.</param>
/// <param name="flags">The flags associated with the parent connection object.</param>
/// <returns>The .NET DBType the text evaluates to.</returns>
internal static DbType TypeNameToDbType(
SQLiteConnection connection,
string name,
string typeName,
SQLiteConnectionFlags flags
)
{
DbType? defaultDbType = null;
if (connection != null)
{
flags |= connection.Flags;
if ((flags & SQLiteConnectionFlags.UseConnectionTypes) == SQLiteConnectionFlags.UseConnectionTypes)
{
SQLiteDbTypeMap connectionTypeNames = connection._typeNames;
if (connectionTypeNames != null)
{
if (name != null)
if (typeName != null)
{
SQLiteDbTypeMapping value;
if (connectionTypeNames.TryGetValue(name, out value))
if (connectionTypeNames.TryGetValue(typeName, out value))
{
return value.dataType;
}
else
{
int index = name.IndexOf('(');
int index = typeName.IndexOf('(');
if ((index > 0) &&
connectionTypeNames.TryGetValue(name.Substring(0, index).TrimEnd(), out value))
connectionTypeNames.TryGetValue(typeName.Substring(0, index).TrimEnd(), out value))
{
return value.dataType;
}
}
}
}
}
//
// NOTE: Use the default database type for the connection.
//
defaultDbType = connection.DefaultDbType;
}
if ((flags & SQLiteConnectionFlags.NoGlobalTypes) == SQLiteConnectionFlags.NoGlobalTypes)
{
return (defaultDbType != null) ? (DbType)defaultDbType : GetDefaultDbType();
if (defaultDbType != null)
return (DbType)defaultDbType;
defaultDbType = GetDefaultDbType();
#if !NET_COMPACT_20 && TRACE_WARNING
DefaultDbTypeWarning(typeName, flags, defaultDbType);
#endif
return (DbType)defaultDbType;
}
lock (_syncRoot)
{
if (_typeNames == null)
_typeNames = GetSQLiteDbTypeMap();
if (name != null)
if (typeName != null)
{
SQLiteDbTypeMapping value;
if (_typeNames.TryGetValue(name, out value))
if (_typeNames.TryGetValue(typeName, out value))
{
return value.dataType;
}
else
{
int index = name.IndexOf('(');
int index = typeName.IndexOf('(');
if ((index > 0) &&
_typeNames.TryGetValue(name.Substring(0, index).TrimEnd(), out value))
_typeNames.TryGetValue(typeName.Substring(0, index).TrimEnd(), out value))
{
return value.dataType;
}
}
}
}
#if !NET_COMPACT_20 && TRACE_WARNING
if (!String.IsNullOrEmpty(name) &&
if (defaultDbType != null)
return (DbType)defaultDbType;
((flags & SQLiteConnectionFlags.TraceWarning) == SQLiteConnectionFlags.TraceWarning))
{
Trace.WriteLine(String.Format(
CultureInfo.CurrentCulture,
"WARNING: Type mapping failed, returning default type {0} for name \"{1}\".",
defaultDbType, name));
}
defaultDbType = GetDefaultDbType();
#if !NET_COMPACT_20 && TRACE_WARNING
DefaultDbTypeWarning(typeName, flags, defaultDbType);
#endif
return (defaultDbType != null) ? (DbType)defaultDbType : GetDefaultDbType();
return (DbType)defaultDbType;
}
#endregion
private static object _syncRoot = new object();
private static SQLiteDbTypeMap _typeNames = null;
}
|