Re: [Firebird-net-provider] (no subject)

2012-08-29 Thread Roberto Carlos | Unimed
How do I install Firebird. NET Provider in visual studio 2012?
Firebird. NET Provider is already supporting. NET 4.0 and 4.5?

thank you

Roberto Carlos
Analyst Information Technology
Unimed São Lourenço Work Cooperative Medical


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] Error with DDEX Provider Visual Studio 2010 : Ver 2.0.5 / Firebird ADO.NET Data Provider 2.7.5

2012-03-28 Thread Roberto Carlos | Unimed
also report issue in DNET-357, DNET-316,

-Mensagem Original- 
From: Eddy Poullet
Sent: Wednesday, March 28, 2012 12:15 PM
To: firebird-net-provider@lists.sourceforge.net
Subject: [Firebird-net-provider] Error with DDEX Provider Visual Studio 2010 
: Ver 2.0.5 / Firebird ADO.NET Data Provider 2.7.5

Hi,

Error : Failed to merge object(s)  Object reference not set set to an
instance of an object.
This error is raised in VStudio 2010. Seems to be the same as DNET-316.

To reproduced it:
Install the ddex
Create a connection and modify it to use the Employee Database include
in Firebird
Open a new project
Add a new item of dataset type (DataSet1.xsd e.g.).
Drag/drop the country
Drag/drop the customer table - error message box appears.

Effectively, it seems related to Foreign key. If you drag/drop the
customer table first, there are no problems for this table but after the
dropping of the country table, it appears.

Is the DNET-316 the correct error reference?
Anyway, I think that removing the foreign key (this action has solved
the problem for somebody in the mailing list) is not a good solution.

Thanks for your fantastic work,

Eddy
Brussels


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here
http://p.sf.net/sfu/sfd2d-msazure
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider 


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] Error with DDEX Provider Visual Studio 2010 : Ver 2.0.5 / Firebird ADO.NET Data Provider 2.7.5

2012-03-28 Thread Roberto Carlos | Unimed
I also has report this issue in DNET-394

-Mensagem Original- 
From: Eddy Poullet
Sent: Wednesday, March 28, 2012 12:15 PM
To: firebird-net-provider@lists.sourceforge.net
Subject: [Firebird-net-provider] Error with DDEX Provider Visual Studio 2010 
: Ver 2.0.5 / Firebird ADO.NET Data Provider 2.7.5

Hi,

Error : Failed to merge object(s)  Object reference not set set to an
instance of an object.
This error is raised in VStudio 2010. Seems to be the same as DNET-316.

To reproduced it:
Install the ddex
Create a connection and modify it to use the Employee Database include
in Firebird
Open a new project
Add a new item of dataset type (DataSet1.xsd e.g.).
Drag/drop the country
Drag/drop the customer table - error message box appears.

Effectively, it seems related to Foreign key. If you drag/drop the
customer table first, there are no problems for this table but after the
dropping of the country table, it appears.

Is the DNET-316 the correct error reference?
Anyway, I think that removing the foreign key (this action has solved
the problem for somebody in the mailing list) is not a good solution.

Thanks for your fantastic work,

Eddy
Brussels


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here
http://p.sf.net/sfu/sfd2d-msazure
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider 


--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] Entity Framework autoincrement problem

2010-12-30 Thread Roberto Carlos | Unimed
You can change your triggers to:



CREATE TRIGGER STUDENTS_BI FOR STUDENTS
ACTIVE BEFORE INSERT POSITION 0
as
begin
  if (COALESCE(new.id, 0)  1) then
new.id = gen_id(gen_students_id, 1);
end



--
From: Stan sphinx...@yahoo.com
Sent: Thursday, December 30, 2010 5:24 AM
To: firebird-net-provider@lists.sourceforge.net
Subject: Re: [Firebird-net-provider] Entity Framework autoincrement problem


 It seems that the firebird server performs
 insert into students(id, firstname) values(0, 'asdf')
 instead of
 insert into students(firstname) values('asdf')
 select id ...
 -- 
 View this message in context: 
 http://firebird.1100200.n4.nabble.com/Entity-Framework-autoincrement-problem-tp3167085p3167993.html
 Sent from the firebird-net-provider mailing list archive at Nabble.com.

 --
 Learn how Oracle Real Application Clusters (RAC) One Node allows customers
 to consolidate database storage, standardize their database environment, 
 and,
 should the need arise, upgrade to a full multi-node Oracle RAC database
 without downtime or disruption
 http://p.sf.net/sfu/oracle-sfdevnl
 ___
 Firebird-net-provider mailing list
 Firebird-net-provider@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/firebird-net-provider
 

--
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and, 
should the need arise, upgrade to a full multi-node Oracle RAC database 
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


[Firebird-net-provider] FbDataReader.HasRows and FbCommand.Cancel

2010-11-12 Thread Roberto Carlos | Unimed
Hello,

FbDataReader.HasRows and FbCommand.Cancel is work in Firebird .NET providers 
2.5.2 ?

 


--
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] FbDataReader.HasRows andFbCommand.Cancel

2010-11-12 Thread Roberto Carlos | Unimed
I need know if FbDataReader.HasRows and FbCommand.Cancel is work fine,
or if FbDataReader.HasRows only return true,
or if FbCommand.Cancel don't cancel current executing command.

--
From: Jiri Cincura disk...@cincura.net
Sent: Friday, November 12, 2010 9:00 AM
To: For users and developers of the Firebird .NET providers 
firebird-net-provider@lists.sourceforge.net
Subject: Re: [Firebird-net-provider] FbDataReader.HasRows 
andFbCommand.Cancel

 On Fri, Nov 12, 2010 at 11:43, Roberto Carlos | Unimed
 roberto.car...@unimed-online.net wrote:
 FbDataReader.HasRows and

 Yes, it was there for quite some time.

 FbCommand.Cancel is work in Firebird .NET providers
 2.5.2 ?

 No, there's no such method if you look at the FbCommand class.

 -- 
 Jiri {x2} Cincura (x2develop.com founder)
 http://blog.cincura.net/ | http://www.ID3renamer.com

 --
 Centralized Desktop Delivery: Dell and VMware Reference Architecture
 Simplifying enterprise desktop deployment and management using
 Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
 client virtualization framework. Read more!
 http://p.sf.net/sfu/dell-eql-dev2dev
 ___
 Firebird-net-provider mailing list
 Firebird-net-provider@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/firebird-net-provider
 

--
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider