<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-4397</id>
	<title>Nabble - firebird-net-provider</title>
	<updated>2009-12-08T12:44:35Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/firebird-net-provider-f4397.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/firebird-net-provider-f4397.html" />
	<subtitle type="html">Mailing list archive for firebird-net-provider</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26720399</id>
	<title>[FB-Tracker] Created: (DNET-287) Memory Problem when not dispose the DbCommand</title>
	<published>2009-12-08T12:44:35Z</published>
	<updated>2009-12-08T12:44:35Z</updated>
	<author>
		<name>JIRA tracker@firebirdsql.org</name>
	</author>
	<content type="html">Memory Problem when not dispose the DbCommand
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: DNET-287
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://tracker.firebirdsql.org/browse/DNET-287&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tracker.firebirdsql.org/browse/DNET-287&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: .NET Data provider
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: ADO.NET Provider
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: 2.5.1, 2.1.0
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: Windows Vista Home Basic, Visual Studio 2008, .Net Framework 3.5 SP1, Firebird 2.1.3
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Nicolas T
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Jiri Cincura
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Priority: Critical
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hello,
&lt;br&gt;&lt;br&gt;Recently we have problem on our aplication when generation long sql inside transactions like the sample, the problem is the memory increase and them got a error &amp;quot;Unable to alocate memory from operation system&amp;quot;
&lt;br&gt;&lt;br&gt;The process fbserver.exe increase his memory use until finish all the memory from the computer and them the error apears
&lt;br&gt;&lt;br&gt;But if i Dispose de componente DbCommand like is comment on the code the problem dont hapen, 
&lt;br&gt;&lt;br&gt;Code Sample
&lt;br&gt;&lt;br&gt;&lt;br&gt;using System;
&lt;br&gt;using System.Collections.Generic;
&lt;br&gt;using System.ComponentModel;
&lt;br&gt;using System.Data;
&lt;br&gt;using System.Drawing;
&lt;br&gt;using System.Linq;
&lt;br&gt;using System.Text;
&lt;br&gt;using System.Windows.Forms;
&lt;br&gt;using System.Data.Common;
&lt;br&gt;using System.Configuration;
&lt;br&gt;using FirebirdSql.Data.FirebirdClient;
&lt;br&gt;&lt;br&gt;namespace WinTestTransaction
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; public partial class Form1 : Form
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private DbProviderFactory _dbpfactory;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public DbProviderFactory Dbpfactory
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; get { return _dbpfactory; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set { _dbpfactory = value; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private DbConnection _dbconn;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public DbConnection Dbconn
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; get { return _dbconn; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set { _dbconn = value; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private DbTransaction _dbtrans;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public DbTransaction Dbtrans
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; get { return _dbtrans; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set { _dbtrans = value; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private DbCommand _dbcmd;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public DbCommand Dbcmd
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; get { return _dbcmd; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set { _dbcmd = value; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private DbCommand _dbcmd2;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public DbCommand Dbcmd2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; get { return _dbcmd2; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set { _dbcmd2 = value; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public Form1()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; InitializeComponent();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private void button1_Click(object sender, EventArgs e)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbpfactory = DbProviderFactories.GetFactory(ConfigurationManager.AppSettings.Get(&amp;quot;provider&amp;quot;).ToString());
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbconn = Dbpfactory.CreateConnection();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbconn.ConnectionString = ConfigurationManager.AppSettings.Get(&amp;quot;conexao&amp;quot;).ToString();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbconn.Open();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbtrans = Dbconn.BeginTransaction();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for (int i = 0; i &amp;lt; 500000; i++)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbcmd = Dbconn.CreateCommand();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbcmd.Transaction = Dbtrans;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbcmd.Connection = Dbconn;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbcmd.CommandType = CommandType.Text;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbcmd.CommandText = &amp;quot;INSERT INTO TEST(IDCODIGO,TESTE) VALUES ('&amp;quot; + i.ToString() + &amp;quot;','&amp;quot; + i.ToString() + &amp;quot;') &amp;quot;;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbcmd.Prepare();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbcmd.ExecuteNonQuery();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //Dbcmd.Dispose();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbtrans.Commit();
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dbconn.Close();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MessageBox.Show(&amp;quot;OK&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (Exception ex)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MessageBox.Show(ex.Message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://tracker.firebirdsql.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tracker.firebirdsql.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26720399&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-FB-Tracker--Created%3A-%28DNET-287%29-Memory-Problem-when-not-dispose-the-DbCommand-tp26720399p26720399.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26692693</id>
	<title>Re: Does provider fit to work with EF 4.0</title>
	<published>2009-12-08T03:47:02Z</published>
	<updated>2009-12-08T03:47:02Z</updated>
	<author>
		<name>Trofimich</name>
	</author>
	<content type="html">&amp;gt; Yes.
&lt;br&gt;&lt;br&gt;Excellent! I'll try it...
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26692693&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Does-provider-fit-to-work-with-EF-4.0-tp26691194p26692693.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26692480</id>
	<title>Re: Does provider fit to work with EF 4.0</title>
	<published>2009-12-08T03:30:17Z</published>
	<updated>2009-12-08T03:30:17Z</updated>
	<author>
		<name>Jiri Cincura</name>
	</author>
	<content type="html">On Tue, Dec 8, 2009 at 12:21, sasha &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26692480&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;trofimich@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Does all new EF 4.0 features will
&lt;br&gt;&amp;gt; work with FbClient 2.5 ?
&lt;br&gt;&lt;br&gt;Yes.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Jiri {x2} Cincura (CTO x2develop.com)
&lt;br&gt;&lt;a href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26692480&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Does-provider-fit-to-work-with-EF-4.0-tp26691194p26692480.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26692377</id>
	<title>Re: Does provider fit to work with EF 4.0</title>
	<published>2009-12-08T03:22:25Z</published>
	<updated>2009-12-08T03:22:25Z</updated>
	<author>
		<name>Trofimich</name>
	</author>
	<content type="html">&amp;gt; As all you mentioned all EF related not provider, then yes.
&lt;br&gt;&lt;br&gt;But i don't know does new EW requir new features from provider or not :-(
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26692377&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Does-provider-fit-to-work-with-EF-4.0-tp26691194p26692377.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26692405</id>
	<title>Re: Does provider fit to work with EF 4.0</title>
	<published>2009-12-08T03:21:08Z</published>
	<updated>2009-12-08T03:21:08Z</updated>
	<author>
		<name>Trofimich</name>
	</author>
	<content type="html">Maybe it's not correct question... Does all new EF 4.0 features will 
&lt;br&gt;work with FbClient 2.5 ?
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26692405&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Does-provider-fit-to-work-with-EF-4.0-tp26691194p26692405.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26692340</id>
	<title>Re: Does provider fit to work with EF 4.0</title>
	<published>2009-12-08T03:20:13Z</published>
	<updated>2009-12-08T03:20:13Z</updated>
	<author>
		<name>Jiri Cincura</name>
	</author>
	<content type="html">On Tue, Dec 8, 2009 at 12:17, sasha &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26692340&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;trofimich@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; And it will support new EF 4.0 features?
&lt;br&gt;&lt;br&gt;As all you mentioned all EF related not provider, then yes.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Jiri {x2} Cincura (CTO x2develop.com)
&lt;br&gt;&lt;a href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26692340&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Does-provider-fit-to-work-with-EF-4.0-tp26691194p26692340.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26692302</id>
	<title>Re: Does provider fit to work with EF 4.0</title>
	<published>2009-12-08T03:17:03Z</published>
	<updated>2009-12-08T03:17:03Z</updated>
	<author>
		<name>Trofimich</name>
	</author>
	<content type="html">And it will support new EF 4.0 features?
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26692302&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Does-provider-fit-to-work-with-EF-4.0-tp26691194p26692302.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26691450</id>
	<title>Re: Does provider fit to work with EF 4.0</title>
	<published>2009-12-08T02:07:23Z</published>
	<updated>2009-12-08T02:07:23Z</updated>
	<author>
		<name>Jiri Cincura</name>
	</author>
	<content type="html">On Tue, Dec 8, 2009 at 10:48, sasha &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26691450&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;trofimich@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Is it possible to
&lt;br&gt;&amp;gt; use FbClient 2.5 with new version of .NET Framework
&lt;br&gt;&lt;br&gt;Yes.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Jiri {x2} Cincura (CTO x2develop.com)
&lt;br&gt;&lt;a href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26691450&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Does-provider-fit-to-work-with-EF-4.0-tp26691194p26691450.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26691194</id>
	<title>Does provider fit to work with EF 4.0</title>
	<published>2009-12-08T01:48:28Z</published>
	<updated>2009-12-08T01:48:28Z</updated>
	<author>
		<name>Trofimich</name>
	</author>
	<content type="html">Hi. I've tried VS 2010 Beta 2 - very nice emotions. There are many 
&lt;br&gt;useful features in EF 4.0, such aa lazy loading, cascade deleting, 
&lt;br&gt;foreign keys and many other.
&lt;br&gt;&lt;br&gt;I palan to start new project, but i don't like MS SQL. Is it possible to 
&lt;br&gt;use FbClient 2.5 with new version of .NET Framework, or i i should wait 
&lt;br&gt;for a new version and use MS SQL now?
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26691194&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Does-provider-fit-to-work-with-EF-4.0-tp26691194p26691194.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26685322</id>
	<title>Re: Generating entity classes using a firebird database</title>
	<published>2009-12-07T14:20:29Z</published>
	<updated>2009-12-07T14:20:29Z</updated>
	<author>
		<name>Jiri Cincura</name>
	</author>
	<content type="html">On Mon, Dec 7, 2009 at 19:53, Robert Quintero &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26685322&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;robertq@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;configSections&amp;gt;
&lt;br&gt;&amp;gt;     ...
&lt;br&gt;&amp;gt; &amp;lt;section name=&amp;quot;firebirdsql.data.firebirdclient&amp;quot; type=&amp;quot;System.Data.Common.DbProviderConfigurationHandler, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;   &amp;lt;/configSections&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;DbProviderFactories&amp;gt;
&lt;br&gt;&amp;gt;       ...
&lt;br&gt;&amp;gt; &amp;lt;add name=&amp;quot;FirebirdClient Data Provider&amp;quot; invariant=&amp;quot;FirebirdSql.Data.FirebirdClient&amp;quot; description=&amp;quot;.Net Framework Data Provider for Firebird&amp;quot; type=&amp;quot;FirebirdSql.Data.FirebirdClient.FirebirdClientFactory, FirebirdSql.Data.FirebirdClient, Version=2.5.1.0, Culture=neutral, PublicKeyToken=3750abcc3150b00c&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;     &amp;lt;/DbProviderFactories&amp;gt;
&lt;/div&gt;&lt;br&gt;This looks OK.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Jiri {x2} Cincura (CTO x2develop.com)
&lt;br&gt;&lt;a href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Return on Information:
&lt;br&gt;Google Enterprise Search pays you back
&lt;br&gt;Get the facts.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/google-dev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/google-dev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26685322&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generating-entity-classes-using-a-firebird-database-tp26648420p26685322.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26682194</id>
	<title>Re: Generating entity classes using a	 firebird database</title>
	<published>2009-12-07T10:53:01Z</published>
	<updated>2009-12-07T10:53:01Z</updated>
	<author>
		<name>Robert Quintero</name>
	</author>
	<content type="html">&lt;HTML&gt;&lt;HEAD&gt;
&lt;META content=&quot;text/html; charset=iso-8859-15&quot; http-equiv=Content-Type&gt;
&lt;META name=GENERATOR content=&quot;MSHTML 8.00.6001.18852&quot;&gt;&lt;/HEAD&gt;
&lt;BODY style=&quot;MARGIN: 4px 4px 1px; FONT: 10pt Segoe UI&quot;&gt;
&lt;DIV&gt;GAC&amp;nbsp;Name: FirebirdSql.Data.Firebird.Client Version: 2.5.1 PKT: 3750abcc3150b00c&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Entries in machine.config from C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG.&lt;/DIV&gt;
&lt;DIV&gt;&amp;lt;configSections&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;...&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/DIV&gt;
&lt;DIV&gt;&amp;lt;section name=&quot;firebirdsql.data.firebirdclient&quot; type=&quot;System.Data.Common.DbProviderConfigurationHandler, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089&quot; /&amp;gt;&lt;BR&gt;&amp;nbsp; &amp;lt;/configSections&amp;gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;lt;DbProviderFactories&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/DIV&gt;
&lt;DIV&gt;&amp;lt;add name=&quot;FirebirdClient Data Provider&quot; invariant=&quot;FirebirdSql.Data.FirebirdClient&quot; description=&quot;.Net Framework Data Provider for Firebird&quot; type=&quot;FirebirdSql.Data.FirebirdClient.FirebirdClientFactory, FirebirdSql.Data.FirebirdClient, Version=2.5.1.0, Culture=neutral, PublicKeyToken=3750abcc3150b00c&quot; /&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/DbProviderFactories&amp;gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Do you see something wrong there? I should also mention as I have a few times now. I can see the database through the server explorer and can use the dataset design tools, but I can't add a an Entity data model because I don't see firebird as a connection option.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Robert&lt;BR&gt;&lt;BR&gt;&amp;gt;&amp;gt;&amp;gt; On 12/5/2009 at&amp;nbsp; 1:32 AM, in message &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26682194&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;d2fa8bfb0912050032r5eaece3axc1040fd34088d463@...&lt;/a&gt;&amp;gt;, Jiri Cincura &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26682194&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;diskuze@...&lt;/a&gt;&amp;gt; wrote:&lt;BR&gt;&lt;/DIV&gt;
&lt;TABLE style=&quot;MARGIN: 0px 0px 0px 15px; FONT-SIZE: 1em&quot; border=0 bgColor=#f3f3f3&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;DIV style=&quot;BORDER-LEFT: #050505 1px solid; PADDING-LEFT: 7px&quot;&gt;On Fri, Dec 4, 2009 at 23:41, Robert Quintero &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26682194&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;robertq@...&lt;/a&gt;&amp;gt; wrote:&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; I'm using version 2.5.1.&lt;BR&gt;&lt;BR&gt;Obviously not. Else it will be available as DDEX and EF connection.&lt;BR&gt;Check what you have in GAC and what version you're using in&lt;BR&gt;machine.config.&lt;BR&gt;&lt;BR&gt;--&lt;BR&gt;Jiri {x2} Cincura (CTO x2develop.com)&lt;BR&gt;&lt;A href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/A&gt; | &lt;A href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;------------------------------------------------------------------------------&lt;BR&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,&lt;BR&gt;a free event focused on virtualization and cloud computing. &lt;BR&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.&lt;BR&gt;&lt;A href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/A&gt;&lt;BR&gt;_______________________________________________&lt;BR&gt;Firebird-net-provider mailing list&lt;BR&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26682194&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;&lt;BR&gt;&lt;A href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26682194&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generating-entity-classes-using-a-firebird-database-tp26648420p26682194.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26672718</id>
	<title>Re: VS to Firebird</title>
	<published>2009-12-06T21:18:51Z</published>
	<updated>2009-12-06T21:18:51Z</updated>
	<author>
		<name>Roger Mandisa</name>
	</author>
	<content type="html">Dear Will,&lt;br&gt;&lt;br&gt;try this link &lt;a href=&quot;http://codemuch.com/node/3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://codemuch.com/node/3&lt;/a&gt;&lt;br&gt;&lt;br&gt;hope this will solve your problem...&lt;br&gt;&lt;br&gt;&lt;br&gt;rm&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/11/21 Will Ferguson &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26672718&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;willferguson@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;








&lt;div link=&quot;blue&quot; vlink=&quot;purple&quot; lang=&quot;EN-AU&quot;&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;If I knew how to do it I’d gladly contribute and write the instructions.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;I didn’t get the firebird Database for free. It was foisted upon
me by a third party Software program the company uses.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;I want to integrate the business processes. We have SQL, JADE
and Firebird Databases that need to “talk” with each other . So I’ll need to
access 2 Firebird Databases.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;Read access is fine. I don’t own the data structure but I do own
the data.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;I’m not complaining because something has gone bad. I’m complaining
because nothing has gone right.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;Nothing personal guys. Firebird is a great product. I’m just frustrated
I can’t work with it in VS yet.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;Surely there is someone out there that can. And is willing to help
me understand where I’m going wrong.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;It may be that this is a VS problem not a firebird problem.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;PS. I do a lot of work for charity. I contribute to user groups
all over the world. I am not looking for a free ride , nor am I lazy. I am a
developer. That often means I’m still working at 3am and drinking way too much
Mountain Dew. I apologise for being rude. &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;Will - OZ&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0cm 0cm;&quot;&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 10pt;&quot; lang=&quot;EN-US&quot;&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-size: 10pt;&quot; lang=&quot;EN-US&quot;&gt; Carlos Guzmán [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26672718&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;carlosga05@...&lt;/a&gt;]
&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Friday, 20 November 2009 11:20 PM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; For users and developers of the Firebird .NET providers&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [Firebird-net-provider] VS to Firebird&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;

&lt;p class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;Hello:&lt;/p&gt;

&lt;div&gt;

&lt;blockquote style=&quot;border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(204, 204, 204); border-width: medium medium medium 1pt; padding: 0cm 0cm 0cm 6pt; margin-left: 4.8pt; margin-right: 0cm;&quot;&gt;


&lt;div&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;If
I’m asking for too much then I’m happy to provide instruction on how to pull
your head out of your own arse.&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/blockquote&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;I was going to write a rude answer ... but as i&amp;#39;m out of the
project now, i will simply say that if i was Jiri i will *never* do the
installer for the DDEX provider, never, never, never ( it&amp;#39;s a tool for
developers, and if you think the instructions in the readme aren&amp;#39;t clear enough
you could try to explain what parts of it aren&amp;#39;t clear, to update them, instead
of being complaining ... ).&lt;br&gt;
&lt;br&gt;
There are tons of people using the provider ( that has a *lot* of really nice
features ) but only a *few* ( really *few* ) of them contributing to the
project ( i don&amp;#39;t know if there are more people that Jiri right now, that has
done a really nice job since i left the project ... and before too ;) ), and
there are a lot of areas where people can help, but ... looks like it&amp;#39;s nice to
get all for free without doing nothing, and complaint when somethings goes bad
.... or didn&amp;#39;t work as you expect .... and with the time really is discouraging
( at least for me it was at the time )&lt;br&gt;
 &lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br clear=&quot;all&quot;&gt;
&lt;br&gt;
-- &lt;br&gt;
Carlos Guzmán Álvarez&lt;br&gt;
Vigo-Spain&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://carlosga.wordpress.com&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://carlosga.wordpress.com&lt;/a&gt;&lt;/p&gt;

&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;

&lt;/div&gt;


&lt;br&gt;------------------------------------------------------------------------------&lt;br&gt;
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day&lt;br&gt;
trial. Simplify your report design, integration and deployment - and focus on&lt;br&gt;
what you do best, core application coding. Discover what&amp;#39;s new with&lt;br&gt;
Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________&lt;br&gt;
Firebird-net-provider mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26672718&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26672718&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VS-to-Firebird-tp26441405p26672718.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26654326</id>
	<title>Re: Mono Linux Unable to connect to FB Database.</title>
	<published>2009-12-05T02:05:50Z</published>
	<updated>2009-12-05T02:05:50Z</updated>
	<author>
		<name>marius adrian popa</name>
	</author>
	<content type="html">On Sat, Dec 5, 2009 at 11:43 AM, marius adrian popa &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26654326&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mapopa@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Sat, Dec 5, 2009 at 10:38 AM, Jiri Cincura &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26654326&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;diskuze@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Looks like Mono isn't supporting this charset. I know, that Mono has
&lt;br&gt;&amp;gt;&amp;gt; no idea about ks_c_5601-1987, but this worked, at least in some
&lt;br&gt;&amp;gt;&amp;gt; previous versions of Mono. Try to find some reference to shift_jis in
&lt;br&gt;&amp;gt;&amp;gt; Mono changelog or sources, maybe previous version. Or just comment
&lt;br&gt;&amp;gt;&amp;gt; this line in sources and build with MONO and LINUX directive.
&lt;br&gt;&amp;gt; I had the same issue some time ago
&lt;br&gt;&amp;gt; here is how to recompile the 2.5.x solution with MONO and LINUX directive
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://mapopa.blogspot.com/2008/09/mono-firebird-example-updated-you-must.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mapopa.blogspot.com/2008/09/mono-firebird-example-updated-you-must.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Jiri {x2} Cincura (CTO x2develop.com)
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;&amp;gt;&amp;gt; a free event focused on virtualization and cloud computing.
&lt;br&gt;&amp;gt;&amp;gt; Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Firebird-net-provider mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26654326&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;/div&gt;in intrepid worked ok the above instruction but with monodevlop &amp;nbsp;in
&lt;br&gt;karmic i get this error
&lt;br&gt;&lt;br&gt;&lt;br&gt;WARNING [2009-12-05 12:01:50Z]: Unknown project type guid
&lt;br&gt;'{930C7802-8A8C-48F9-8165-68863BCCD9DD}' on line #7. Ignoring.
&lt;br&gt;WARNING [2009-12-05 12:01:50Z]:
&lt;br&gt;/home/mariuz/tarbals/NETProvider/source/FirebirdSql.Data.FirebirdClient.sln
&lt;br&gt;(67) : Project with guid = '{8E42CA8F-0BBC-42C4-B687-5F47B6E49519}'
&lt;br&gt;not found or not loaded. Ignoring
&lt;br&gt;PARSE LOAD: 593.663
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26654326&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;unsuported.png&lt;/strong&gt; (14K) &lt;a href=&quot;http://old.nabble.com/attachment/26654326/0/unsuported.png&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Mono-Linux-Unable-to-connect-to-FB-Database.-tp26651883p26654326.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26654173</id>
	<title>Re: Mono Linux Unable to connect to FB Database.</title>
	<published>2009-12-05T01:43:30Z</published>
	<updated>2009-12-05T01:43:30Z</updated>
	<author>
		<name>marius adrian popa</name>
	</author>
	<content type="html">On Sat, Dec 5, 2009 at 10:38 AM, Jiri Cincura &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26654173&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;diskuze@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Looks like Mono isn't supporting this charset. I know, that Mono has
&lt;br&gt;&amp;gt; no idea about ks_c_5601-1987, but this worked, at least in some
&lt;br&gt;&amp;gt; previous versions of Mono. Try to find some reference to shift_jis in
&lt;br&gt;&amp;gt; Mono changelog or sources, maybe previous version. Or just comment
&lt;br&gt;&amp;gt; this line in sources and build with MONO and LINUX directive.
&lt;br&gt;I had the same issue some time ago
&lt;br&gt;here is how to recompile the 2.5.x solution with MONO and LINUX directive
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://mapopa.blogspot.com/2008/09/mono-firebird-example-updated-you-must.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mapopa.blogspot.com/2008/09/mono-firebird-example-updated-you-must.html&lt;/a&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Jiri {x2} Cincura (CTO x2develop.com)
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;&amp;gt; a free event focused on virtualization and cloud computing.
&lt;br&gt;&amp;gt; Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Firebird-net-provider mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26654173&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26654173&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Mono-Linux-Unable-to-connect-to-FB-Database.-tp26651883p26654173.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26653814</id>
	<title>Re: Mono Linux Unable to connect to FB Database.</title>
	<published>2009-12-05T00:38:07Z</published>
	<updated>2009-12-05T00:38:07Z</updated>
	<author>
		<name>Jiri Cincura</name>
	</author>
	<content type="html">Looks like Mono isn't supporting this charset. I know, that Mono has
&lt;br&gt;no idea about ks_c_5601-1987, but this worked, at least in some
&lt;br&gt;previous versions of Mono. Try to find some reference to shift_jis in
&lt;br&gt;Mono changelog or sources, maybe previous version. Or just comment
&lt;br&gt;this line in sources and build with MONO and LINUX directive.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Jiri {x2} Cincura (CTO x2develop.com)
&lt;br&gt;&lt;a href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26653814&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Mono-Linux-Unable-to-connect-to-FB-Database.-tp26651883p26653814.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26653771</id>
	<title>Re: Generating entity classes using a firebird database</title>
	<published>2009-12-05T00:32:08Z</published>
	<updated>2009-12-05T00:32:08Z</updated>
	<author>
		<name>Jiri Cincura</name>
	</author>
	<content type="html">On Fri, Dec 4, 2009 at 23:41, Robert Quintero &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26653771&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;robertq@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm using version 2.5.1.
&lt;br&gt;&lt;br&gt;Obviously not. Else it will be available as DDEX and EF connection.
&lt;br&gt;Check what you have in GAC and what version you're using in
&lt;br&gt;machine.config.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Jiri {x2} Cincura (CTO x2develop.com)
&lt;br&gt;&lt;a href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26653771&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generating-entity-classes-using-a-firebird-database-tp26648420p26653771.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26651883</id>
	<title>Mono Linux Unable to connect to FB Database.</title>
	<published>2009-12-04T16:59:52Z</published>
	<updated>2009-12-04T16:59:52Z</updated>
	<author>
		<name>Michael Bushby</name>
	</author>
	<content type="html">This is my first firebird / Mono project with .net so I&amp;#39;m a complete newbie.&lt;br&gt;&lt;br&gt;I have a database stored int /var/db/menumate.fdb&lt;br&gt;&lt;br&gt;I can connect to it fine using flamerobin.&lt;br&gt;&lt;br&gt;I cant connect to it with the following code.&lt;br&gt;
&lt;br&gt;logger.Debug(&amp;quot;Connecting to DB.&amp;quot;);                                &lt;br&gt;            FbConnectionStringBuilder cs = new FbConnectionStringBuilder();&lt;br&gt;            cs.DataSource = &amp;quot;localhost&amp;quot;;&lt;br&gt;            cs.Database = &amp;quot;/var/db/menumate.fdb&amp;quot;;&lt;br&gt;
            cs.UserID = &amp;quot;SYSDBA&amp;quot;;&lt;br&gt;            cs.Password = &amp;quot;masterkey&amp;quot;;&lt;br&gt;            cs.Dialect = 3;&lt;br&gt;            cs.Port = 3050;&lt;br&gt;            // I have tried these charsets just in case the make no difference.&lt;br&gt;
            //cs.Charset = &amp;quot;NONE&amp;quot;;&lt;br&gt;            //cs.Charset = &amp;quot;UNICODE_FSS&amp;quot;;&lt;br&gt;            //cs.Charset = &amp;quot;ISO8859_1&amp;quot;; &lt;br&gt;            &lt;br&gt;            string connectionString = cs.ToString();&lt;br&gt;
            logger.Debug(connectionString);                                            &lt;br&gt;            IDbConnection dbcon = new FbConnection(connectionString); &lt;br&gt;            logger.Debug(&amp;quot;Opening Connection.&amp;quot;);                                            &lt;br&gt;
            dbcon.Open(); // crashes here.&lt;br&gt;            logger.Debug(&amp;quot;Connection Opened&amp;quot;);                                                        &lt;br&gt;            IDbCommand dbcmd = dbcon.CreateCommand(); &lt;br&gt;            string sql = &amp;quot;SELECT CONTACTS.CONTACTS_KEY,&lt;a href=&quot;http://CONTACTS.NAME&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;CONTACTS.NAME&lt;/a&gt;,CONTACTS.PIN FROM CONTACTS where CONTACT_TYPE = 0&amp;quot;; &lt;br&gt;
            logger.Debug(&amp;quot;Assigning SQL&amp;quot;);                                                        &lt;br&gt;            dbcmd.CommandText = sql; &lt;br&gt;            logger.Debug(&amp;quot;ExecuteReader&amp;quot;);                                                        &lt;br&gt;
            IDataReader reader = dbcmd.ExecuteReader(); &lt;br&gt;            logger.Debug(&amp;quot;Reading&amp;quot;);                                                                    &lt;br&gt;            while(reader.Read()) {&lt;br&gt;                Staff StaffMember = new Staff();&lt;br&gt;
&lt;br&gt;                StaffMember.ID = reader.GetInt32(0);&lt;br&gt;                StaffMember.Name = reader.GetString(1);                                &lt;br&gt;                StaffMember.PIN = reader.GetString(2);&lt;br&gt;                StaffList.Add(StaffMember);                            &lt;br&gt;
            }         &lt;br&gt;            // clean up &lt;br&gt;            reader.Close(); &lt;br&gt;            reader = null; &lt;br&gt;            dbcmd.Dispose(); &lt;br&gt;            dbcmd = null; &lt;br&gt;            dbcon.Close(); &lt;br&gt;            dbcon = null;&lt;br&gt;
&lt;br&gt;When try and connect to it in code I get the following error.&lt;br&gt;// My Nlog output see code.&lt;br&gt; MonoMethod.InternalInvoke =&amp;gt; MainWindow.OnClick =&amp;gt; XMLCache.buildStaff building Staff&lt;br&gt;&lt;br&gt;// My Nlog output see code.&lt;br&gt;
 MainWindow.OnClick =&amp;gt; XMLCache.buildStaff =&amp;gt; DBMenuMate.HDServer.IData.getStaff Connecting to DB.&lt;br&gt;&lt;br&gt;// My Nlog output see code.&lt;br&gt; MainWindow.OnClick =&amp;gt; XMLCache.buildStaff =&amp;gt; DBMenuMate.HDServer.IData.getStaff data source=localhost;initial catalog=/var/db/menumate.fdb;user id=SYSDBA;password=masterkey;dialect=3;port number=3050;character set=ISO8859_1&lt;br&gt;
&lt;br&gt;// My Nlog output see code.&lt;br&gt; MainWindow.OnClick =&amp;gt; XMLCache.buildStaff =&amp;gt; DBMenuMate.HDServer.IData.getStaff Opening Connection.&lt;br&gt;&lt;br&gt;Marshaling clicked signal&lt;br&gt;Exception in Gtk# callback delegate&lt;br&gt;  Note: Applications can use GLib.ExceptionManager.UnhandledException to handle the exception.&lt;br&gt;
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---&amp;gt; System.TypeInitializationException: An exception was thrown by the type initializer for FirebirdSql.Data.Common.Charset ---&amp;gt; System.ArgumentException: Encoding name &amp;#39;shift_jis&amp;#39; not supported&lt;br&gt;
Parameter name: name&lt;br&gt;  at System.Text.Encoding.GetEncoding (System.String name) [0x000ee] in /build/buildd/mono-2.4.2.3+dfsg/mcs/class/corlib/System.Text/Encoding.cs:702 &lt;br&gt;  at FirebirdSql.Data.Common.Charset.GetEncoding () [0x00000] &lt;br&gt;
  at FirebirdSql.Data.Common.Charset..ctor (Int32 id, System.String name, Int32 bytesPerCharacter, System.String systemName) [0x00000] &lt;br&gt;  at FirebirdSql.Data.Common.Charset.InitializeSupportedCharsets () [0x00000] &lt;br&gt;
  at FirebirdSql.Data.Common.Charset..cctor () [0x00000] &lt;br&gt;  --- End of inner exception stack trace ---&lt;br&gt;  at FirebirdSql.Data.FirebirdClient.FbConnectionInternal.Connect () [0x00000] &lt;br&gt;  at (wrapper remoting-invoke-with-check) FirebirdSql.Data.FirebirdClient.FbConnectionInternal:Connect ()&lt;br&gt;
  at FirebirdSql.Data.FirebirdClient.FbConnectionPool.Create () [0x00000] &lt;br&gt;  at FirebirdSql.Data.FirebirdClient.FbConnectionPool.CheckOut () [0x00000] &lt;br&gt;  at (wrapper remoting-invoke-with-check) FirebirdSql.Data.FirebirdClient.FbConnectionPool:CheckOut ()&lt;br&gt;
  at FirebirdSql.Data.FirebirdClient.FbConnection.Open () [0x00000] &lt;br&gt;  --- End of inner exception stack trace ---&lt;br&gt;  at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00071] in /build/buildd/mono-2.4.2.3+dfsg/mcs/class/corlib/System.Reflection/MonoMethod.cs:169 &lt;br&gt;
  at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in /build/buildd/mono-2.4.2.3+dfsg/mcs/class/corlib/System.Reflection/MethodBase.cs:111 &lt;br&gt;  at System.Delegate.DynamicInvokeImpl (System.Object[] args) [0x000b9] in /build/buildd/mono-2.4.2.3+dfsg/mcs/class/corlib/System/Delegate.cs:430 &lt;br&gt;
  at System.MulticastDelegate.DynamicInvokeImpl (System.Object[] args) [0x00018] in /build/buildd/mono-2.4.2.3+dfsg/mcs/class/corlib/System/MulticastDelegate.cs:71 &lt;br&gt;  at System.Delegate.DynamicInvoke (System.Object[] args) [0x00000] in /build/buildd/mono-2.4.2.3+dfsg/mcs/class/corlib/System/Delegate.cs:402 &lt;br&gt;
  at GLib.Signal.ClosureInvokedCB (System.Object o, GLib.ClosureInvokedArgs args) [0x00000] &lt;br&gt;  at GLib.SignalClosure.Invoke (GLib.ClosureInvokedArgs args) [0x00000] &lt;br&gt;  at GLib.SignalClosure.MarshalCallback (IntPtr raw_closure, IntPtr return_val, UInt32 n_param_vals, IntPtr param_values, IntPtr invocation_hint, IntPtr marshal_data) [0x00000] &lt;br&gt;
   at GLib.ExceptionManager.RaiseUnhandledException(System.Exception e, Boolean is_terminal)&lt;br&gt;   at GLib.SignalClosure.MarshalCallback(IntPtr raw_closure, IntPtr return_val, UInt32 n_param_vals, IntPtr param_values, IntPtr invocation_hint, IntPtr marshal_data)&lt;br&gt;
   at Gtk.Application.gtk_main()&lt;br&gt;   at Gtk.Application.Run()&lt;br&gt;   at HDServer.MainClass.Main(System.String[] args) in /home/michael/dev/POSBuddy/HandDroid/HDServer/HDServer/Main.cs:line 13&lt;br&gt;&lt;br&gt;&lt;br&gt;Mono JIT compiler version 2.4.2.3 (Debian 2.4.2.3+dfsg-2)&lt;br&gt;
FirebirdClient-2.5.1-MONO_LINUX.7z&lt;br&gt;LI-V2.1.2.18118 Firebird 2.1&lt;br&gt;&lt;br&gt;If anyone has any hints or tips that would be great!&lt;br&gt;&lt;br&gt;Michael&lt;br&gt;&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26651883&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Mono-Linux-Unable-to-connect-to-FB-Database.-tp26651883p26651883.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26650438</id>
	<title>Re: Generating entity classes using a	 firebird database</title>
	<published>2009-12-04T14:41:25Z</published>
	<updated>2009-12-04T14:41:25Z</updated>
	<author>
		<name>Robert Quintero</name>
	</author>
	<content type="html">&lt;HTML&gt;&lt;HEAD&gt;
&lt;META content=&quot;text/html; charset=iso-8859-15&quot; http-equiv=Content-Type&gt;
&lt;META name=GENERATOR content=&quot;MSHTML 8.00.6001.18852&quot;&gt;&lt;/HEAD&gt;
&lt;BODY style=&quot;MARGIN: 4px 4px 1px; FONT: 10pt Segoe UI&quot;&gt;
&lt;DIV&gt;I'm using version 2.5.1.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Robert&lt;BR&gt;&lt;BR&gt;&amp;gt;&amp;gt;&amp;gt; On 12/4/2009 at 3:30 PM, in message &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26650438&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;d2fa8bfb0912041430i386ce6e8k24538d3cbf81e807@...&lt;/a&gt;&amp;gt;, Jiri Cincura &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26650438&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;diskuze@...&lt;/a&gt;&amp;gt; wrote:&lt;BR&gt;&lt;/DIV&gt;
&lt;TABLE style=&quot;MARGIN: 0px 0px 0px 15px; FONT-SIZE: 1em&quot; border=0 bgColor=#f3f3f3&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;DIV style=&quot;BORDER-LEFT: #050505 1px solid; PADDING-LEFT: 7px&quot;&gt;On Fri, Dec 4, 2009 at 22:28, Robert Quintero &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26650438&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;robertq@...&lt;/a&gt;&amp;gt; wrote:&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; I do not see Firebird as a valid data provider&lt;BR&gt;&lt;BR&gt;You have to use version 2.5+ of provider for DDEX connections.&lt;BR&gt;&lt;BR&gt;--&lt;BR&gt;Jiri {x2} Cincura (CTO x2develop.com)&lt;BR&gt;&lt;A href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/A&gt; | &lt;A href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;------------------------------------------------------------------------------&lt;BR&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,&lt;BR&gt;a free event focused on virtualization and cloud computing. &lt;BR&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.&lt;BR&gt;&lt;A href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/A&gt;&lt;BR&gt;_______________________________________________&lt;BR&gt;Firebird-net-provider mailing list&lt;BR&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26650438&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;&lt;BR&gt;&lt;A href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26650438&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generating-entity-classes-using-a-firebird-database-tp26648420p26650438.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26650288</id>
	<title>Re: Generating entity classes using a firebird database</title>
	<published>2009-12-04T14:30:30Z</published>
	<updated>2009-12-04T14:30:30Z</updated>
	<author>
		<name>Jiri Cincura</name>
	</author>
	<content type="html">On Fri, Dec 4, 2009 at 22:28, Robert Quintero &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26650288&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;robertq@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I do not see Firebird as a valid data provider
&lt;br&gt;&lt;br&gt;You have to use version 2.5+ of provider for DDEX connections.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Jiri {x2} Cincura (CTO x2develop.com)
&lt;br&gt;&lt;a href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26650288&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generating-entity-classes-using-a-firebird-database-tp26648420p26650288.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26649517</id>
	<title>Re: Generating entity classes using a	 firebird database</title>
	<published>2009-12-04T13:28:29Z</published>
	<updated>2009-12-04T13:28:29Z</updated>
	<author>
		<name>Robert Quintero</name>
	</author>
	<content type="html">&lt;HTML&gt;&lt;HEAD&gt;
&lt;META content=&quot;text/html; charset=iso-8859-15&quot; http-equiv=Content-Type&gt;
&lt;META name=GENERATOR content=&quot;MSHTML 8.00.6001.18852&quot;&gt;&lt;/HEAD&gt;
&lt;BODY style=&quot;MARGIN: 4px 4px 1px; FONT: 10pt Segoe UI&quot;&gt;
&lt;DIV&gt;My apologies I was misled a bit by the book Pro c# 2008, they used something called entity classes that I assumed was the same thing. But even when I try to add an entity model diagram I do not see Firebird as a valid data provider. This is even though, as I stated before, I can see the connection in the server explorer. I can make a dataset diagram though using the visual tools which would probably do just fine, but I still think I must have done something wrong somewhere.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Please forgive me for a being a bit newb as I am trying to learn what all the available methods are and what it takes to implement them before even deciding on which method I will employ into my program.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Robert&lt;BR&gt;&lt;BR&gt;&amp;gt;&amp;gt;&amp;gt; On 12/4/2009 at 1:48 PM, in message &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26649517&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;d2fa8bfb0912041248l1d3401behf544a3b14af81624@...&lt;/a&gt;&amp;gt;, Jiri Cincura &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26649517&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;diskuze@...&lt;/a&gt;&amp;gt; wrote:&lt;BR&gt;&lt;/DIV&gt;
&lt;TABLE style=&quot;MARGIN: 0px 0px 0px 15px; FONT-SIZE: 1em&quot; border=0 bgColor=#f3f3f3&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;DIV style=&quot;BORDER-LEFT: #050505 1px solid; PADDING-LEFT: 7px&quot;&gt;On Fri, Dec 4, 2009 at 19:57, Robert Quintero &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26649517&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;robertq@...&lt;/a&gt;&amp;gt; wrote:&lt;BR&gt;&amp;gt; Am I supposed to be able to use the designer to do this or am I just barking&lt;BR&gt;&amp;gt; up the wrong tree?&lt;BR&gt;&lt;BR&gt;LINQ to SQL and Entity Framework are completely different pieces.&lt;BR&gt;&lt;BR&gt;-- &lt;BR&gt;Jiri {x2} Cincura (CTO x2develop.com)&lt;BR&gt;&lt;A href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/A&gt; | &lt;A href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;------------------------------------------------------------------------------&lt;BR&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,&lt;BR&gt;a free event focused on virtualization and cloud computing. &lt;BR&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.&lt;BR&gt;&lt;A href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/A&gt;&lt;BR&gt;_______________________________________________&lt;BR&gt;Firebird-net-provider mailing list&lt;BR&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26649517&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;&lt;BR&gt;&lt;A href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26649517&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generating-entity-classes-using-a-firebird-database-tp26648420p26649517.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26649031</id>
	<title>Re: Generating entity classes using a firebird database</title>
	<published>2009-12-04T12:48:43Z</published>
	<updated>2009-12-04T12:48:43Z</updated>
	<author>
		<name>Jiri Cincura</name>
	</author>
	<content type="html">On Fri, Dec 4, 2009 at 19:57, Robert Quintero &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26649031&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;robertq@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Am I supposed to be able to use the designer to do this or am I just barking
&lt;br&gt;&amp;gt; up the wrong tree?
&lt;br&gt;&lt;br&gt;LINQ to SQL and Entity Framework are completely different pieces.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Jiri {x2} Cincura (CTO x2develop.com)
&lt;br&gt;&lt;a href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26649031&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generating-entity-classes-using-a-firebird-database-tp26648420p26649031.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26648420</id>
	<title>Generating entity classes using a firebird database</title>
	<published>2009-12-04T10:57:48Z</published>
	<updated>2009-12-04T10:57:48Z</updated>
	<author>
		<name>Robert Quintero</name>
	</author>
	<content type="html">&lt;HTML&gt;&lt;HEAD&gt;
&lt;META content=&quot;text/html; charset=iso-8859-15&quot; http-equiv=Content-Type&gt;
&lt;META name=GENERATOR content=&quot;MSHTML 8.00.6001.18852&quot;&gt;&lt;/HEAD&gt;
&lt;BODY style=&quot;MARGIN: 4px 4px 1px; FONT: 10pt Segoe UI&quot;&gt;
&lt;DIV&gt;What I am trying to do is use Linq to SQL and generate my entity classes like I would with a MS Sql database. I was under the impression that the latest versions supported the entity framework. I have already downloaded and set up the DDEX files and I can see my database in the server explorer but when I attempt to create the database diagram, which follows the autogeneration of my entity classes, it tells me &quot;the selected object uses an unsupported data provider&quot;. Am I supposed to be able to use the designer to do this or am I just barking up the wrong tree?&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Additional information:&lt;/DIV&gt;
&lt;DIV&gt;I'm running Vistax64 and the project is using the embedded version of firebird (2.1.3) using c# with .net 3.5 sp1.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thanks,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Robert&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Join us December 9, 2009 for the Red Hat Virtual Experience,
&lt;br&gt;a free event focused on virtualization and cloud computing. 
&lt;br&gt;Attend in-depth sessions from your desk. Your couch. Anywhere.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/redhat-sfdev2dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/redhat-sfdev2dev&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26648420&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generating-entity-classes-using-a-firebird-database-tp26648420p26648420.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26545347</id>
	<title>Re: Getting to Firebird after using another system</title>
	<published>2009-11-27T09:30:49Z</published>
	<updated>2009-11-27T09:30:49Z</updated>
	<author>
		<name>Cjkalbente</name>
	</author>
	<content type="html">&lt;br&gt;So you are wanting to use Firebird? Best thing if you need to transfer your customer addresses is to use a data integration software. I'd recommend looking at Datastage and Talend which would be two interesting programs to check to transfer the addresses. Keep us updated on the situation.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;mrciken wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Hello, 
&lt;br&gt;&lt;br&gt;Currently, we are using another Dbms: we would like to change. Now, we would like to use Firebird. Only problem is that most of our customer addresses and other information are on the other Dbms. 
&lt;br&gt;&lt;br&gt;Can you help us with this?
&lt;br&gt;&lt;br&gt;Thank you.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-to-Firebird-after-using-another-system-tp26531911p26545347.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531911</id>
	<title>Getting to Firebird after using another system</title>
	<published>2009-11-26T08:33:12Z</published>
	<updated>2009-11-26T08:33:12Z</updated>
	<author>
		<name>mrciken</name>
	</author>
	<content type="html">Hello, 
&lt;br&gt;&lt;br&gt;Currently, we are using another Dbms: we would like to change. Now, we would like to use Firebird. Only problem is that most of our customer addresses and other information are on the other Dbms. 
&lt;br&gt;&lt;br&gt;Can you help us with this?
&lt;br&gt;&lt;br&gt;Thank you.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-to-Firebird-after-using-another-system-tp26531911p26531911.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26520937</id>
	<title>Re: Executing non traditional sql commands in the .Net provider</title>
	<published>2009-11-25T13:53:28Z</published>
	<updated>2009-11-25T13:53:28Z</updated>
	<author>
		<name>Jiri Cincura</name>
	</author>
	<content type="html">On Wed, Nov 25, 2009 at 21:51, Evandro's mailing lists (Please, &amp;nbsp;don't
&lt;br&gt;send personal messages to this address) &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26520937&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;listasjr@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Any suggestions?
&lt;br&gt;&lt;br&gt;Hardly, without any error shown.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Jiri {x2} Cincura (CTO x2develop.com)
&lt;br&gt;&lt;a href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26520937&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Executing-non-traditional-sql-commands-in-the-.Net-provider-tp26520100p26520937.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26520100</id>
	<title>Executing non traditional sql commands in the .Net provider</title>
	<published>2009-11-25T12:51:15Z</published>
	<updated>2009-11-25T12:51:15Z</updated>
	<author>
		<name>Listas Evandro (Não use este endereço para mensagens pessoais)</name>
	</author>
	<content type="html">&lt;font color=&quot;#008000&quot; size=&quot;2&quot;&gt;&lt;font color=&quot;#008000&quot; size=&quot;2&quot;&gt;
&lt;div&gt;Dear hackers&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;I want to execute commands like this but the [FbCommand].ExecuteNonQuery won´t work with them.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Any suggestions?&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Regards&lt;/div&gt;
&lt;div&gt;-Evadnro&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; DECLARE EXTERNAL FUNCTION WRITEDEBUG&lt;/div&gt;
&lt;p&gt;CSTRING(255)&lt;/p&gt;
&lt;p&gt;RETURNS SMALLINT BY VALUE&lt;/p&gt;
&lt;p&gt;ENTRY_POINT &amp;#39;WriteDebug&amp;#39; MODULE_NAME &amp;#39;IBDebugUDF.dll&amp;#39;;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;2&quot;&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;CREATE DOMAIN DM_ABASTECIMENTO AS&lt;/div&gt;
&lt;p&gt;CHAR(4)&lt;/p&gt;
&lt;p&gt;NOT NULL;&lt;/p&gt;&lt;/font&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26520100&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Executing-non-traditional-sql-commands-in-the-.Net-provider-tp26520100p26520100.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26471499</id>
	<title>[FB-Tracker] Created: (DNET-286) Reading BLOB SUB_TYPE TEXT is very very slow</title>
	<published>2009-11-21T22:21:37Z</published>
	<updated>2009-11-21T22:21:37Z</updated>
	<author>
		<name>JIRA tracker@firebirdsql.org</name>
	</author>
	<content type="html">Reading BLOB SUB_TYPE TEXT &amp;nbsp;is very very slow
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: DNET-286
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://tracker.firebirdsql.org/browse/DNET-286&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tracker.firebirdsql.org/browse/DNET-286&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: .NET Data provider
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Improvement
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: ADO.NET Provider
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: 2.5.1
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: VS2008 SP1, Windows Vista SP1, MS.Net 3.5, Firebird Server 2.1
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Tao Lin
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Jiri Cincura
&lt;br&gt;&lt;br&gt;&lt;br&gt;I have a blob text file like define like this:
&lt;br&gt;&lt;br&gt;HtmlChuck	BLOB SUB_TYPE TEXT SEGMENT SIZE 80 NOT NULL,
&lt;br&gt;&lt;br&gt;My connection string define like this:
&lt;br&gt;&lt;br&gt;string connectionString = &amp;quot;Data Source={0};Database={1};User=SYSDBA;password=masterkey;Dialect=1;Role=;Connection lifetime=15;Pooling=true;Packet Size=4096;&amp;quot;;
&lt;br&gt;&lt;br&gt;I use the 'HtmlChunk' to store html page so that I can display it in runtime. &amp;nbsp;The HtmlChuck value usually 8,000-10,000 bytes long. When I am using the latest Firebird.net provider to load the table by DataReader, it took 30 seconds to load 126 records. But if I change not connection to ODBC connection like this:
&lt;br&gt;&lt;br&gt;string connectionString = &amp;quot;DRIVER=Firebird/InterBase(r) driver; UID=SYSDBA; PWD=masterkey; DBNAME={0}:{1};
&lt;br&gt;&lt;br&gt;It took less than 1 second to load the same 126 records. 
&lt;br&gt;&lt;br&gt;I think this is Firebird.net provider performance issue. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://tracker.firebirdsql.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tracker.firebirdsql.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26471499&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-FB-Tracker--Created%3A-%28DNET-286%29-Reading-BLOB-SUB_TYPE-TEXT-is-very-very-slow-tp26471499p26471499.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26451402</id>
	<title>Re: VS to Firebird</title>
	<published>2009-11-20T14:39:40Z</published>
	<updated>2009-11-20T14:39:40Z</updated>
	<author>
		<name>Will Ferguson</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=utf-8&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-AU link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;If I knew how to do it I’d gladly contribute and write the instructions.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;I didn’t get the firebird Database for free. It was foisted upon
me by a third party Software program the company uses.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;I want to integrate the business processes. We have SQL, JADE
and Firebird Databases that need to “talk” with each other . So I’ll need to
access 2 Firebird Databases.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Read access is fine. I don’t own the data structure but I do own
the data.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;I’m not complaining because something has gone bad. I’m complaining
because nothing has gone right.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Nothing personal guys. Firebird is a great product. I’m just frustrated
I can’t work with it in VS yet.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Surely there is someone out there that can. And is willing to help
me understand where I’m going wrong.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;It may be that this is a VS problem not a firebird problem.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;PS. I do a lot of work for charity. I contribute to user groups
all over the world. I am not looking for a free ride , nor am I lazy. I am a
developer. That often means I’m still working at 3am and drinking way too much
Mountain Dew. I apologise for being rude. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Will - OZ&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span lang=EN-US style='font-size:10.0pt;font-family:
&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span lang=EN-US style='font-size:10.0pt;
font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt; Carlos Guzmán [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26451402&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;carlosga05@...&lt;/a&gt;]
&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Friday, 20 November 2009 11:20 PM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; For users and developers of the Firebird .NET providers&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [Firebird-net-provider] VS to Firebird&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Hello:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;blockquote style='border:none;border-left:solid #CCCCCC 1.0pt;padding:0cm 0cm 0cm 6.0pt;
margin-left:4.8pt;margin-right:0cm'&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;If
I’m asking for too much then I’m happy to provide instruction on how to pull
your head out of your own arse.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/blockquote&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;I was going to write a rude answer ... but as i'm out of the
project now, i will simply say that if i was Jiri i will *never* do the
installer for the DDEX provider, never, never, never ( it's a tool for
developers, and if you think the instructions in the readme aren't clear enough
you could try to explain what parts of it aren't clear, to update them, instead
of being complaining ... ).&lt;br&gt;
&lt;br&gt;
There are tons of people using the provider ( that has a *lot* of really nice
features ) but only a *few* ( really *few* ) of them contributing to the
project ( i don't know if there are more people that Jiri right now, that has
done a really nice job since i left the project ... and before too ;) ), and
there are a lot of areas where people can help, but ... looks like it's nice to
get all for free without doing nothing, and complaint when somethings goes bad
.... or didn't work as you expect .... and with the time really is discouraging
( at least for me it was at the time )&lt;br&gt;
&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;br clear=all&gt;
&lt;br&gt;
-- &lt;br&gt;
Carlos Guzmán Álvarez&lt;br&gt;
Vigo-Spain&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://carlosga.wordpress.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://carlosga.wordpress.com&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26451402&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VS-to-Firebird-tp26441405p26451402.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26442580</id>
	<title>Re: Transfering data to Firebird</title>
	<published>2009-11-20T07:12:13Z</published>
	<updated>2009-11-20T07:12:13Z</updated>
	<author>
		<name>Cjkalbente</name>
	</author>
	<content type="html">I would suggest extracting a csv file from your database. Once that is done, use Datastage or Talend Open Studio to operate the transfer. That is, to me, the best way to migrate data.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;mrciken wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Hey all,
&lt;br&gt;&lt;br&gt;Im trying to transfer an Access database to firebird and am not quite sure about how to do this. I have been looking on the net but have not found much info. Would you know how to do this?
&lt;br&gt;&lt;br&gt;Thanks.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Transfering-data-to-Firebird-tp26406229p26442580.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26442774</id>
	<title>Re: VS to Firebird</title>
	<published>2009-11-20T04:19:55Z</published>
	<updated>2009-11-20T04:19:55Z</updated>
	<author>
		<name>Carlos Guzmán Álvarez ™</name>
	</author>
	<content type="html">Hello:&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div link=&quot;blue&quot; vlink=&quot;purple&quot; lang=&quot;EN-AU&quot;&gt;&lt;div&gt;



&lt;p class=&quot;MsoNormal&quot;&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div link=&quot;blue&quot; vlink=&quot;purple&quot; lang=&quot;EN-AU&quot;&gt;
&lt;div&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;If I’m asking for too much then I’m happy to
provide instruction on how to pull your head out of your own arse.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;I was going to write a rude answer ... but as i&amp;#39;m out of the project now, i will simply say that if i was Jiri i will *never* do the installer for the DDEX provider, never, never, never ( it&amp;#39;s a tool for developers, and if you think the instructions in the readme aren&amp;#39;t clear enough you could try to explain what parts of it aren&amp;#39;t clear, to update them, instead of being complaining ... ).&lt;br&gt;
&lt;br&gt;There are tons of people using the provider ( that has a *lot* of really nice features ) but only a *few* ( really *few* ) of them contributing to the project ( i don&amp;#39;t know if there are more people that Jiri right now, that has done a really nice job since i left the project ... and before too ;) ), and there are a lot of areas where people can help, but ... looks like it&amp;#39;s nice to get all for free without doing nothing, and complaint when somethings goes bad .... or didn&amp;#39;t work as you expect .... and with the time really is discouraging ( at least for me it was at the time )&lt;br&gt;
 &lt;/div&gt;&lt;/div&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Carlos Guzmán Álvarez&lt;br&gt;Vigo-Spain&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://carlosga.wordpress.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://carlosga.wordpress.com&lt;/a&gt;&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26442774&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VS-to-Firebird-tp26441405p26442774.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26441535</id>
	<title>Re: VS to Firebird</title>
	<published>2009-11-20T03:05:20Z</published>
	<updated>2009-11-20T03:05:20Z</updated>
	<author>
		<name>Kjell Rilbe-3</name>
	</author>
	<content type="html">For what it's worth, I recently tried to get SQL Server 2005's 
&lt;br&gt;import/export wizard to find and use the Firebird .NET driver. I also 
&lt;br&gt;stumbled upon several problems, one of which was to even find 
&lt;br&gt;gacutil.exe, considering I didn't have VS installed on the machine in 
&lt;br&gt;question. I failed.
&lt;br&gt;&lt;br&gt;So, I also think that it would be very relevant to have an installer for 
&lt;br&gt;the .Net driver that would actually install the driver on the system in 
&lt;br&gt;a way that it's available to any application.
&lt;br&gt;&lt;br&gt;It is, unfortunately beyond my capabilities, within reasonable time, to 
&lt;br&gt;create such an installer, otherwise I would probably have already done 
&lt;br&gt;so. If ever I find time to educate myself in installer technologies and 
&lt;br&gt;how .Net drivers are supposed to be installed, I will hopefully also be 
&lt;br&gt;able to find time to create an installer for this driver. I just can't 
&lt;br&gt;see that happening. :-(
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Kjell
&lt;br&gt;&lt;br&gt;Will Ferguson wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have problems connecting to firebird from within Visual Studio.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have some difficulty understanding &amp;nbsp;the precise steps required in the 
&lt;br&gt;&amp;gt; provided ddex readme files.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I also have some problems being considered some sort of moron by the 
&lt;br&gt;&amp;gt; firebird group for suggesting the instructions are not as helpful as 
&lt;br&gt;&amp;gt; they could be.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So , in order that you understand I’m not some hairy arsed kid that fell 
&lt;br&gt;&amp;gt; out of a tree I’ll toot my own horn briefly
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am 43. When I was 16 I wrote my first stock control progam in BASIC
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Since 2000 I have been coding in C# and VB and ASP
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have used VS2003 2005 2008 and I currently use VS2010 beta 2 as well 
&lt;br&gt;&amp;gt; as Coldfusion
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I created an ERP/CRM system that traverses the LAN and WEB for a company 
&lt;br&gt;&amp;gt; with a turnover of over 20 Million a year and services their customers, 
&lt;br&gt;&amp;gt; suppliers and Remote users including smart phone an iPhone apps.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am currently coding WPF and Silverlight apps for major companies and 
&lt;br&gt;&amp;gt; an international Charity organization.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;I now want to integrate some of our LOB with third party firebird 
&lt;br&gt;&amp;gt; databases that exist on our servers.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 2 years ago I tried without luck. Today I discover the same readme 
&lt;br&gt;&amp;gt; files.. the same confusion
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; How often do I use the gacutil?.. hardly ever.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; How often do I need to run a registry hack to get a connection to work 
&lt;br&gt;&amp;gt; ?.. hardly ever
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; How often do I need to edit the machine.config file without fucking up 
&lt;br&gt;&amp;gt; my systems. Well Once is more than enough I reckon.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I want detailed, specifc, instructions on how to connect to a firebird 
&lt;br&gt;&amp;gt; database from within Visual Studio. Is that too much to ask?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; If I’m asking for too much then I’m happy to provide instruction on how 
&lt;br&gt;&amp;gt; to pull your head out of your own arse.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Firebird-net-provider mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441535&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;--------------------------------------
&lt;br&gt;Kjell Rilbe
&lt;br&gt;DataDIA AB
&lt;br&gt;E-post: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441535&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kjell@...&lt;/a&gt;
&lt;br&gt;Telefon: 08-761 06 55
&lt;br&gt;Mobil: 0733-44 24 64
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441535&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VS-to-Firebird-tp26441405p26441535.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26441405</id>
	<title>VS to Firebird</title>
	<published>2009-11-20T02:52:57Z</published>
	<updated>2009-11-20T02:52:57Z</updated>
	<author>
		<name>Will Ferguson</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-AU link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;I have problems connecting to firebird from within Visual
Studio.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;I have some difficulty understanding&amp;nbsp; the precise steps
required in the provided ddex readme files.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;I also have some problems being considered some sort of
moron by the firebird group for suggesting the instructions are not as helpful
as they could be.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;So , in order that you understand I&amp;#8217;m not some hairy
arsed kid that fell out of a tree I&amp;#8217;ll toot my own horn briefly&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;I am 43. When I was 16 I wrote my first stock control progam
in BASIC&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Since 2000 I have been coding in C# and VB and ASP&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;I have used VS2003 2005 2008 and I currently use VS2010 beta
2 as well as Coldfusion&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;I created an ERP/CRM system that traverses the LAN and WEB
for a company with a turnover of over 20 Million a year and services their
customers, suppliers and Remote users including smart phone an iPhone apps.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;I am currently coding WPF and Silverlight apps for major companies
and an international Charity organization.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&amp;nbsp;I now want to integrate some of our LOB with third
party firebird databases that exist on our servers.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;2 years ago I tried without luck. Today I discover the same
readme files.. the same confusion&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;How often do I use the gacutil?.. hardly ever.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;How often do I need to run a registry hack to get a
connection to work ?.. hardly ever&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;How often do I need to edit the machine.config file without
fucking up my systems. Well Once is more than enough I reckon.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;I want detailed, specifc, instructions on how to connect to
a firebird database from within Visual Studio. Is that too much to ask?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;If I&amp;#8217;m asking for too much then I&amp;#8217;m happy to
provide instruction on how to pull your head out of your own arse.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&amp;nbsp;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441405&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VS-to-Firebird-tp26441405p26441405.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26439011</id>
	<title>Re: VS2010 dat providers</title>
	<published>2009-11-19T22:38:29Z</published>
	<updated>2009-11-19T22:38:29Z</updated>
	<author>
		<name>Jiri Cincura</name>
	</author>
	<content type="html">On Thu, Nov 19, 2009 at 20:33, Mercea Paul &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26439011&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul.mercea@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; [PM] Can't be done an installer with checkboxes for VS 2005, 2008 2010 ?
&lt;br&gt;&lt;br&gt;Surely can. But if this is indendet for developers do we really need
&lt;br&gt;to spent time and resources on this rather than on development? And
&lt;br&gt;because our sources are open, everybody can contribute with this kind
&lt;br&gt;of installer action. ;)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Jiri {x2} Cincura (CTO x2develop.com)
&lt;br&gt;&lt;a href=&quot;http://blog.cincura.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.cincura.net/&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://www.ID3renamer.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ID3renamer.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26439011&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VS2010-dat-providers-tp26366191p26439011.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26438791</id>
	<title>Re: problem	connector	FirebirdClient-2.5.1-CF</title>
	<published>2009-11-19T21:51:39Z</published>
	<updated>2009-11-19T21:51:39Z</updated>
	<author>
		<name>Daniele-38</name>
	</author>
	<content type="html">Help, i don't resolve anithing. I've the same problem. Do you have 
&lt;br&gt;testing connector CF with Visual Studio 2005 and work ?
&lt;br&gt;You presume to have a db firebird 2.1 locate on server 192.168.0.1 at 
&lt;br&gt;port 3050 at directory C:\Programmi\Firebird\Firebird_2_1\TEST.FDB. What 
&lt;br&gt;is the connection string ?
&lt;br&gt;How to installing and configuring correctly the connector 
&lt;br&gt;&amp;quot;FirebirdClient-2.5.1-CF&amp;quot; ?
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; System.TypeLoadException was unhandled
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp;Message=&amp;quot;Could not load type
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'FirebirdSql.Data.FirebirdClient.FbConnection' from assembly
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 'FirebirdSql.Data.FirebirdClient, Version=2.5.1.0, Culture=neutral,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; PublicKeyToken=3750ABCC3150B00C'.&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp;StackTrace:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;at testfirebird.Form1..ctor()
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;at testfirebird.Program.Main()
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; But this is a different exception than you wrote in first email. This
&lt;br&gt;&amp;gt;&amp;gt; looks like you have kind of wrong build.
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; How to resolve this exception ?
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; The FirebirdSql.Data.FirebirdClient is only referenced but not
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; registered with gac, is important ?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; If it's distributed with application then not.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; Thank's then i must register with gac. Another test ......
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Firebird-net-provider mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26438791&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26438791&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/problem-connector-FirebirdClient-2.5.1-CF-tp26356947p26438791.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26433131</id>
	<title>Re: VS2010 dat providers</title>
	<published>2009-11-19T11:33:55Z</published>
	<updated>2009-11-19T11:33:55Z</updated>
	<author>
		<name>Mercea Paul</name>
	</author>
	<content type="html">&amp;gt; 
&lt;br&gt;&amp;gt; The problem is, that 1) we have couple of DDEX readme files and 2)
&lt;br&gt;&amp;gt; people are simply NOT reading the content carefully. If you look at
&lt;br&gt;&amp;gt; DDEX questions from last year, the questioner is doing everything else
&lt;br&gt;&amp;gt; but not what's IN readme.
&lt;br&gt;&amp;gt; 
&lt;br&gt;[PM] Can't be done an installer with checkboxes for VS 2005, 2008 2010 ?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Firebird-net-provider mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26433131&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Firebird-net-provider@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/firebird-net-provider&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VS2010-dat-providers-tp26366191p26433131.html" />
</entry>

</feed>
