Firebird EF6 DDEX VS2013 社区更新 4 动态 SQL 错误
Firebird EF6 DDEX VS2013 Community Update 4 Dynamic SQL Error
我正在尝试从我公司的 ERP 的旧(但实时)Firebird 数据库中读取数据。不幸的是,我对 Firebird 数据库知之甚少。它是由其他人制作的,由于我们的服务和维护协议的条件,我不能更改它。
我已经为 VS2013 以及我的项目设置了 DDEX 提供程序和 EF6 提供程序。我正在尝试为数据库创建 EDM。 运行 Visual Studio 中的实体数据模型向导出现此错误:
An error occurred while connecting to the database. The database might
be unavailable. An exception of type
'System.Data.Entity.Core.EntityCommandExecutionException' occurred.
The error message is: 'An error occurred while executing the command
definition. See the inner exception for details. The inner exception
caught was of type 'FirebirdSql.Data.FirebirdClient.FbException', with
this error message: 'Dynamic SQL Error SQL error code = -104 Token
unknown - line 6, column 8 SELECT'. The inner exception caught was of
type 'FirebirdSql.Data.Common.IscException', with this error message:
'Dynamic SQL Error SQL error code = -104 Token unknown - line 6,
column 8 SELECT'.'.
这是我的 app.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<entityFramework>
<defaultConnectionFactory type="FirebirdSql.Data.EntityFramework6.FbConnectionFactory, EntityFramework.Firebird" />
<providers>
<provider invariantName="FirebirdSql.Data.FirebirdClient" type="FirebirdSql.Data.EntityFramework6.FbProviderServices, EntityFramework.Firebird" />
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
<system.data>
<DbProviderFactories>
<remove invariant="FirebirdSql.Data.FirebirdClient" />
<add name="FirebirdClient Data Provider" invariant="FirebirdSql.Data.FirebirdClient" description=".NET Framework Data Provider for Firebird" type="FirebirdSql.Data.FirebirdClient.FirebirdClientFactory, FirebirdSql.Data.FirebirdClient" />
</DbProviderFactories>
</system.data>
</configuration>
这是我machine.comfig的相关部分:
<system.data>
<DbProviderFactories>
<add name="Microsoft SQL Server Compact Data Provider 4.0" invariant="System.Data.SqlServerCe.4.0" description=".NET Framework Data Provider for Microsoft SQL Server Compact" type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"/>
<add name="FirebirdClient Data Provider" invariant="FirebirdSql.Data.FirebirdClient" description=".NET Framework Data Provider for Firebird" type="FirebirdSql.Data.FirebirdClient.FirebirdClientFactory, FirebirdSql.Data.FirebirdClient, Version=4.6.0.0, Culture=neutral, PublicKeyToken=3750abcc3150b00c" />
</DbProviderFactories>
</system.data>
我正在使用 DDEXProvider-3.0.1.0,它的两个 DataTools dll 都已加载到 GAC 中。
我正在使用 EntityFramework.Firebird-4.6.0.0-NET45,dll FirebirdSql.Data.FirebirdClient 在 GAC 中。
我在 NuGet 的解决方案中使用 Entity Framework 6.1.2。 (本来我用的是6.0,结果还是一样的错误。)
我在我的 NuGet 解决方案 4.6.0.0 中使用 Firebird ADO.NET 数据提供程序。
我在 NuGet 的解决方案中使用 Firebird Entity Framework Provider 4.6.0.0。
我的数据连接测试正常,它正在使用 Dialect 3 与数据库通信。我已经尝试过 Dialect 1,但它并没有解决问题。我目前正在使用 "none" 作为字符集。
在服务器资源管理器中,我可以毫无错误地浏览所有文件夹:域、系统表、表、视图和存储过程。
在我看来,错误代码表明 Firebird 数据库不喜欢“.”。在命令的第 8 列中。有人对此有解决方案吗?有人遇到过这个问题吗?
Firebird 1.5 版太旧,无法与 Entity Framework 一起使用。再次使用 gbak to create a portable backup file (fbk) of your database, update the Firebird server to 2.5.3 和 运行 gbak 恢复数据库。现在 EF 应该适合你了。
我正在尝试从我公司的 ERP 的旧(但实时)Firebird 数据库中读取数据。不幸的是,我对 Firebird 数据库知之甚少。它是由其他人制作的,由于我们的服务和维护协议的条件,我不能更改它。
我已经为 VS2013 以及我的项目设置了 DDEX 提供程序和 EF6 提供程序。我正在尝试为数据库创建 EDM。 运行 Visual Studio 中的实体数据模型向导出现此错误:
An error occurred while connecting to the database. The database might be unavailable. An exception of type 'System.Data.Entity.Core.EntityCommandExecutionException' occurred. The error message is: 'An error occurred while executing the command definition. See the inner exception for details. The inner exception caught was of type 'FirebirdSql.Data.FirebirdClient.FbException', with this error message: 'Dynamic SQL Error SQL error code = -104 Token unknown - line 6, column 8 SELECT'. The inner exception caught was of type 'FirebirdSql.Data.Common.IscException', with this error message: 'Dynamic SQL Error SQL error code = -104 Token unknown - line 6, column 8 SELECT'.'.
这是我的 app.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<entityFramework>
<defaultConnectionFactory type="FirebirdSql.Data.EntityFramework6.FbConnectionFactory, EntityFramework.Firebird" />
<providers>
<provider invariantName="FirebirdSql.Data.FirebirdClient" type="FirebirdSql.Data.EntityFramework6.FbProviderServices, EntityFramework.Firebird" />
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
<system.data>
<DbProviderFactories>
<remove invariant="FirebirdSql.Data.FirebirdClient" />
<add name="FirebirdClient Data Provider" invariant="FirebirdSql.Data.FirebirdClient" description=".NET Framework Data Provider for Firebird" type="FirebirdSql.Data.FirebirdClient.FirebirdClientFactory, FirebirdSql.Data.FirebirdClient" />
</DbProviderFactories>
</system.data>
</configuration>
这是我machine.comfig的相关部分:
<system.data>
<DbProviderFactories>
<add name="Microsoft SQL Server Compact Data Provider 4.0" invariant="System.Data.SqlServerCe.4.0" description=".NET Framework Data Provider for Microsoft SQL Server Compact" type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"/>
<add name="FirebirdClient Data Provider" invariant="FirebirdSql.Data.FirebirdClient" description=".NET Framework Data Provider for Firebird" type="FirebirdSql.Data.FirebirdClient.FirebirdClientFactory, FirebirdSql.Data.FirebirdClient, Version=4.6.0.0, Culture=neutral, PublicKeyToken=3750abcc3150b00c" />
</DbProviderFactories>
</system.data>
我正在使用 DDEXProvider-3.0.1.0,它的两个 DataTools dll 都已加载到 GAC 中。
我正在使用 EntityFramework.Firebird-4.6.0.0-NET45,dll FirebirdSql.Data.FirebirdClient 在 GAC 中。
我在 NuGet 的解决方案中使用 Entity Framework 6.1.2。 (本来我用的是6.0,结果还是一样的错误。)
我在我的 NuGet 解决方案 4.6.0.0 中使用 Firebird ADO.NET 数据提供程序。
我在 NuGet 的解决方案中使用 Firebird Entity Framework Provider 4.6.0.0。
我的数据连接测试正常,它正在使用 Dialect 3 与数据库通信。我已经尝试过 Dialect 1,但它并没有解决问题。我目前正在使用 "none" 作为字符集。
在服务器资源管理器中,我可以毫无错误地浏览所有文件夹:域、系统表、表、视图和存储过程。
在我看来,错误代码表明 Firebird 数据库不喜欢“.”。在命令的第 8 列中。有人对此有解决方案吗?有人遇到过这个问题吗?
Firebird 1.5 版太旧,无法与 Entity Framework 一起使用。再次使用 gbak to create a portable backup file (fbk) of your database, update the Firebird server to 2.5.3 和 运行 gbak 恢复数据库。现在 EF 应该适合你了。