Derecelendir
- 0 Oylar - 0 Yüzde
- 1
- 2
- 3
- 4
- 5
|
Firebird .NET Data Provider
|
| Yazar |
Mesaj |
duzgun
Administrator
      
Mesajlar: 801
Katılma Tarihi: Jul 2008
Rep Puanı: 7
|
Firebird .NET Data Provider
Firebird client dll ini kullanmak için C# ile yazılmış bir uygulama.
fbclient.dll
fbembed.dll
Firebird client dll'leridir.
Firebird NET Data Provider da karşılaştığım bir sorunu
fbclient.dll kullanmak yerine fbembed.dll kullanarak çözmüştüm.
fbembed.dll, fbclient.dll dan daha iyi çalışıyor.
Firebird NET Data Provider ın kaynak kodlarını indirip.
Kod:
#if (LINUX)
#if (FBCLIENT)
public const string DllPath = "libfbclient";
#elif (GDS32)
public const string DllPath = "libgds";
#elif (VULCAN)
public const string DllPath = "libfirebird32";
#elif (FYRACLE)
public const string DllPath = "fyracle";
#else
public const string DllPath = "libfbembed";
#endif
#else
#if (FBCLIENT)
public const string DllPath = "fbclient";
#elif (GDS32)
public const string DllPath = "gds32";
#elif (VULCAN)
public const string DllPath = "firebird32";
#elif (FYRACLE)
public const string DllPath = "fyracle";
#else
public const string DllPath = "fbembed";
#endif
#endif
DllPath = "fbclient";
yerine
DllPath = "fbembed";
yazıp derleyip çalıştırdığınızda oluşan
Firebird NET Data Provider dosyasını kullanabilirsiniz.
Firebird NET Data Provider Kaynak dosyası : http://firebirdsql.org/index.php?op=file...etprovider
|
|
| 14-07-2008 22:47 |
|