forked from cincuranet/FirebirdSql.Data.FirebirdClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
46 lines (33 loc) · 2.6 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Visual Studio 2005/2008/2010/2012/2013/2015 DDEX Provider for Firebird
======================================================================
This project is supported by:
-----------------------------
Sean Leyne (Broadview Software)
The DDEX Provider for Firebird provides integration of FirebirdClient into Visual Studio. In order to use Firebird Client in Visual Studio, you have to perform these steps.
0. Preinstallation steps.
-------------------------
Copy files from this archive to some place (must be accessible for VS).
1. Install FirebirdClient into the GAC.
---------------------------------------
You can use gacutil utility to do this or to check whether it's correctly installed. The gacutil show you also the signature for assembly, that will be used later.
2. Modify machine.config file.
------------------------------
Modify it like this (for 64bit systems you have to edit "32bit version" of this file, because Visual Studio is 32bit, but there's no problem with editing the "64bit version" too):
<configuration>
<system.data>
<DbProviderFactories>
...
<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=%Version%, Culture=neutral, PublicKeyToken=3750abcc3150b00c" />
...
</DbProviderFactories>
</system.data>
</configuration>
And substitute (these informations you can find using gacutil):
- %Version% with the version of the provider assembly that you have in the GAC.
Note:
Notice, that in configSections there isn't signature of FirebirdClient but the signature of assembly from framework.
3. Import registry file.
------------------------
There's a couple of *.reg files in installation. There are files for 32bit and for 64bit system, so select appropriate version for your system. There are also files in "withSDK" directory. These can be used for Visual Studio with VS SDK installed. The files not in this directory are for systems without Visual Studio SDK (it's *not* the .NET FW SDK!) and it's probably the best choice for a lot of developers. The selected registry file needs be modified to set the correct paths. To do this, substitute %Path% in the file with path for the DDEX files where you copyied them in step 0 (remember to backslash the backslash character).
IMPORTANT: The DDEX provider didn't work with Express editions of Visual Studio.
(If you want to build the sources you will need to have C# and C++ installed and VS SDK.)