Database support

edited October 2009 in FastReport .NET
I would like to know whether fast report.net supports oracle and mysql databases.

Regards,
Anand N
Microsoft MVP
www.learnxpress.com

Comments

  • edited 7:26PM
    Hello,

    Please download the FRNetConnections.zip file from dl page ("Extras" section):
    http://www.fast-report.com/en/download/fas...t-download.html
    (Firebird, MySQL, Postgres, VistaDB, Oracle, IBM DB2, SQLite)
  • edited 7:26PM
    and ODBC support built in now! (thanks Alex!) > http://www.oracle.com/technology/software/...odbc/index.html
    http://dev.mysql.com/downloads/connector/odbc/5.1.html

    Careful when using mysql, the licensing for the .net connector is a bit restritive for commercial use. (that's why I use ODBC)

    -Anthony
  • edited 7:26PM
    Sorry, I'm Brazilian and not write in English. I'm trying to compile the application to generate the datasourse for MySql more of the following error:

    FastReport.Data.MySqlDataConnection.QuoteIdentifier(string, System.Data.Common.DbConnection): no suitable method found to override.

    Use the Visual Studio 2005.
    connector and MySQL 5.1

    I do not know what to do to get build.
  • edited 7:26PM
    Hello,

    Please use latest available versions of FR.Net and FRNetConnections.zip.
  • edited 7:26PM
    I changed the version of the FR. Net and it worked, thanks.

    Only I did not understand one thing: Where do I put this command line
    FastReport.Utils.RegisteredObjects.AddConnection (typeof (MySqlDataConnection));
    In visual studio or in FastReport?
    I tried to put the file .cs it not compiled.
    I am using C#.
  • edited 7:26PM
    You should execute this line of code at your application's startup. You may put it in the Program.cs file, for example:
        static void Main()
        {
          Application.EnableVisualStyles();
          Application.SetCompatibleTextRenderingDefault(false);
          FastReport.Utils.RegisteredObjects.AddConnection (typeof (MySqlDataConnection)); 
          Application.Run(new Form1());
        }
    
  • edited 7:26PM
    It worked, thanks!

    Is to take the "DEMO VERSION" that appears in the report?
  • edited 7:26PM
    You should buy a license to remove "DEMO VERSION". If you did this, but still see the nag label, remove any FastReport dll from your project folders (especially \bin and \obj) and recompile your project.
  • edited October 2009
    To use the web fastreport to install anything on the web server? Why did a report that generates a pdf on my local machine works more when published on the web does not work.
    Already put the dlls in the bin folder and nothing.
    Which solution since my server does not allow me to install anything.

    error:

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.UnauthorizedAccessException: Access to the path '\FastReport\' is denied.

    ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}
    \ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via , the identity will be the anonymous
    user (typically IUSR_MACHINENAME) or the authenticated request user.

    To grant ASP.NET access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and
    check the boxes for the desired access.

  • edited 7:26PM
    Do you use the Report component to generate a report in ASP.Net? If so, you need to execute the following code before you use a report:
    Config.WebMode = true;
    

    (if you use WebReport, this is not needed).
  • edited 7:26PM
    Thanks for the fast answers you're helping me a lot.

    I did what I said and now appears another problem:
    Can not Find MySQlDataConnection
    Do I have to put any dll in the Bin?
    My code is as follows:

    FastReport.Utils.Config.WebMode = true;
    FastReport.Report wrpListaFuncionario = new FastReport.Report();
    wrpListaFuncionario.Load(Server.MapPath("./relatorio/ListaFichaResumida.Frx"));
    wrpListaFuncionario.SetParameterValue("strSQL", strSQL);
    wrpListaFuncionario.Prepare();
    FastReport.Export.Pdf.PDFExport export = new FastReport.Export.Pdf.PDFExport();
    ...
  • edited 7:26PM
    Yes you have to put FastReport.MySql.dll into the Bin folder.
  • edited 7:26PM
    in my bin folder already has:

    FastReport.dll
    FastReport.Editor.dll
    FastReport.MySql.dll
    MySqlData.dll
    MySqlData.refresh

    and yet nothing.
  • edited 7:26PM
    Could you send me a simple project that demonstrates this error?
    tz@fast-report.com
  • edited 7:26PM
    My application is an Asp. Net web site.

    I could not put this command line in my application:
    FastReport.Utils.RegisteredObjects.AddConnection (typeof (MySqlDataConnection));

    Even so:
    static void Main ()
    (
    Application.EnableVisualStyles ();
    Application.SetCompatibleTextRenderingDefault (false);
    FastReport.Utils.RegisteredObjects.AddConnection (typeof (MySqlDataConnection));
    Application.Run (new Form1 ());
    )

    Is this is the problem?
  • edited 7:26PM
    Ok, then add this code in your Page_Load handler. You also need to check that the code is executed only one time. Something like this:

    static bool coon_added = false;

    protected void Page_Load(object sender, EventArgs e)
    {
    if (!conn_added)
    {
    FastReport.Utils.RegisteredObjects.AddConnection (typeof (MySqlDataConnection));
    conn_added = true;
    }
    }
  • Magezi SagesseMagezi Sagesse DRCONGO
    edited 7:26PM
    AlexTZ wrote: »
    Hello,

    Please download the FRNetConnections.zip file from dl page ("Extras" section):
    http://www.fast-report.com/en/download/fas...t-download.html
    (Firebird, MySQL, Postgres, VistaDB, Oracle, IBM DB2, SQLite)

    Hello, I am building an application in vb.net and mysql database using mysql.net connector 6.7.4 , I really need your help. I've download the FRNetConnections.zip file and opened the mysql project in visual 2012. When I wanna compile the project here are error that I'm getting (if there is any specification that I should follow please tell me; Because I'm really locked in my project on the step of designing the report):

    Error 1 The type or namespace name 'Utils' does not exist in the namespace 'FastReport' (are you missing an assembly reference?) D:\FastReport.MySQL\AssemblyInitializer.cs 4 18 FastReport.MySQL
    Error 7 The type or namespace name 'Utils' does not exist in the namespace 'FastReport' (are you missing an assembly reference?) D:\FastReport.MySQL\MySqlConnectionEditor.cs 10 18 FastReport.MySQL
    Error 2 The type or namespace name 'MySql' could not be found (are you missing a using directive or an assembly reference?) D:\FastReport.MySQL\MySqlDataConnection.cs 5 7 FastReport.MySQL
    Error 8 The type or namespace name 'MySql' could not be found (are you missing a using directive or an assembly reference?) D:\FastReport.MySQL\MySqlConnectionEditor.cs 11 7 FastReport.MySQL
    Error 6 The type or namespace name 'Forms' does not exist in the namespace 'FastReport' (are you missing an assembly reference?) D:\FastReport.MySQL\MySqlConnectionEditor.cs 9 18 FastReport.MySQL
    Error 9 The type or namespace name 'DataConnectionBase' could not be found (are you missing a using directive or an assembly reference?) D:\FastReport.MySQL\MySqlDataConnection.cs 11 38 FastReport.MySQL
    Error 13 The type or namespace name 'Controls' does not exist in the namespace 'FastReport' (are you missing an assembly reference?) D:\FastReport.MySQL\MySqlConnectionEditor.Designer.cs 185 24 FastReport.MySQL
    Error 3 The type or namespace name 'ConnectionEditors' does not exist in the namespace 'FastReport.Data' (are you missing an assembly reference?) D:\FastReport.MySQL\MySqlDataConnection.cs 6 23 FastReport.MySQL
    Error 4 The type or namespace name 'ConnectionEditors' does not exist in the namespace 'FastReport.Data' (are you missing an assembly reference?) D:\FastReport.MySQL\MySqlConnectionEditor.cs 8 23 FastReport.MySQL
    Error 10 The type or namespace name 'ConnectionEditorBase' could not be found (are you missing a using directive or an assembly reference?) D:\FastReport.MySQL\MySqlConnectionEditor.cs 15 48 FastReport.MySQL
    Error 12 The type or namespace name 'ConnectionEditorBase' could not be found (are you missing a using directive or an assembly reference?) D:\FastReport.MySQL\MySqlDataConnection.cs 91 21 FastReport.MySQL
    Error 11 The type or namespace name 'CommandParameterCollection' could not be found (are you missing a using directive or an assembly reference?) D:\FastReport.MySQL\MySqlDataConnection.cs 61 7 FastReport.MySQL
    Error 5 The type or namespace name 'AssemblyInitializerBase' could not be found (are you missing a using directive or an assembly reference?) D:\FastReport.MySQL\AssemblyInitializer.cs 8 38 FastReport.MySQL
    Warning 15 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it was built against the ".NETFramework,Version=v4.0" framework. This is a higher version than the currently targeted framework ".NETFramework,Version=v2.0". FastReport.MySQL
    Warning 90 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Xaml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Xaml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". FastReport.MySQL
    Warning 73 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Web.ApplicationServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Web.ApplicationServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35". FastReport.MySQL
    Warning 57 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". FastReport.MySQL
    Warning 71 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Runtime.Caching, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Runtime.Caching, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". FastReport.MySQL
    Warning 50 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". FastReport.MySQL
    Warning 45 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". FastReport.MySQL
    Warning 69 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35". FastReport.MySQL
    Warning 77 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "Microsoft.Build.Utilities.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" or retarget your application to a framework version which contains "Microsoft.Build.Utilities.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". FastReport.MySQL
    Warning 83 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" or retarget your application to a framework version which contains "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". FastReport.MySQL
    Warning 29 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 20 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 75 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Web.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 87 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Web.RegularExpressions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 66 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 36 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 85 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 39 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 47 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Runtime.Serialization.Formatters.Soap, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 62 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Runtime.Remoting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 38 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 52 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 92 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 22 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 79 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.DirectoryServices.Protocols, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 60 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 81 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 43 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Deployment, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 55 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Data.SqlXml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 94 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Data.OracleClient, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 26 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 32 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Configuration.Install, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 34 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 18 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 16 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 59 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "Microsoft.JScript, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "10.0.0.0" than the version "8.0.0.0" in the current target framework. FastReport.MySQL
    Warning 67 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 41 The primary reference "Mysql.data, Version=6.7.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "Accessibility, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 14 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it was built against the ".NETFramework,Version=v4.0" framework. This is a higher version than the currently targeted framework ".NETFramework,Version=v2.0". FastReport.MySQL
    Warning 64 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". FastReport.MySQL
    Warning 89 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Xaml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Xaml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". FastReport.MySQL
    Warning 25 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Windows.Forms.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Windows.Forms.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35". FastReport.MySQL
    Warning 74 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Web.ApplicationServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Web.ApplicationServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35". FastReport.MySQL
    Warning 56 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". FastReport.MySQL
    Warning 72 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Runtime.Caching, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Runtime.Caching, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". FastReport.MySQL
    Warning 49 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". FastReport.MySQL
    Warning 46 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". FastReport.MySQL
    Warning 70 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" or retarget your application to a framework version which contains "System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35". FastReport.MySQL
    Warning 78 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "Microsoft.Build.Utilities.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" or retarget your application to a framework version which contains "Microsoft.Build.Utilities.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". FastReport.MySQL
    Warning 84 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the framework assembly "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v2.0". To resolve this problem, either remove the reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" or retarget your application to a framework version which contains "Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". FastReport.MySQL
    Warning 28 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the assembly "FastReport.Editor, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c" which was built against the ".NETFramework,Version=v4.0" framework. This is a higher version than the currently targeted framework ".NETFramework,Version=v2.0". FastReport.MySQL
    Warning 24 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the assembly "FastReport.Bars, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c" which was built against the ".NETFramework,Version=v4.0" framework. This is a higher version than the currently targeted framework ".NETFramework,Version=v2.0". FastReport.MySQL
    Warning 30 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 21 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 76 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Web.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 88 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Web.RegularExpressions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 65 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 35 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 86 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 40 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 48 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Runtime.Serialization.Formatters.Soap, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 63 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Runtime.Remoting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 37 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 51 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 91 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 23 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 80 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.DirectoryServices.Protocols, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 61 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 82 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 44 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Deployment, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 54 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Data.SqlXml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 93 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Data.OracleClient, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 27 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 31 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Configuration.Install, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 33 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 19 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 17 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 53 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "10.0.0.0" than the version "8.0.0.0" in the current target framework. FastReport.MySQL
    Warning 58 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "Microsoft.JScript, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "10.0.0.0" than the version "8.0.0.0" in the current target framework. FastReport.MySQL
    Warning 68 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
    Warning 42 The primary reference "FastReport, Version=2013.2.5.0, Culture=neutral, PublicKeyToken=db7e5ce63278458c, processorArchitecture=MSIL" could not be resolved because it has an indirect dependency on the .NET Framework assembly "Accessibility, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which has a higher version "4.0.0.0" than the version "2.0.0.0" in the current target framework. FastReport.MySQL
  • edited 7:26PM
    Hello

    I worked with the demo FastReport and have error with database Oracle: ORA- 03134 problem the version.

    Please Help

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.