[Firebird-net-provider] SqlQuery is not working

2014-08-12 Thread Marco Castro
. Thanks, Marco Castro -- ___ Firebird-net-provider mailing list Firebird-net-provider@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

[Firebird-net-provider] Error when reading from connection

2014-08-11 Thread Marco Castro
Hello, I have an application that opens a Firebird connection and try to star a loop. In one computer the code runs fine and in another computer I get this message when this connection is in another server (Linux server). I tryed connections with and without pools with no difference. Firebird

[Firebird-net-provider] Firebird and Generate Views in Visual Studio 2013

2014-08-06 Thread Marco Castro - McSoft
.FirebirdClient" type="FirebirdSql.Data.EntityFramework6.FbProviderServices, EntityFramework.Firebird" / /providers /entityFrameworkThanks,Marco Castro -- Infragistics Professional Build stunning WinForms ap

Re: [Firebird-net-provider] Entity Framework woes (cannot update modelfrom database)

2014-04-15 Thread Marco Castro - McSoft
Title: EMail McSoft Hi, try with DDEX 3.0.0. Best regards, Marco Aurelio Castro

[Firebird-net-provider] [FB-Tracker] Created: (DNET-403) Lets get more space in the generated query

2012-01-09 Thread Marco Castro (JIRA)
Framework support Affects Versions: 2.6.5 Reporter: Marco Castro Assignee: Jiri Cincura In a huge database I'm experiencing an often situation: the generated query is greater that 64K and Firebird can't handle this. I would like to suggest reduce the size of the aliases

Re: [Firebird-net-provider] How can I use % inside of a contatinsstring?

2010-08-22 Thread Marco Castro
...WHERE UPPER(Extent1.CLIENTNAME) LIKE _UTF8'%MARC\%VIEI%' ESCAPE _UTF8'\' No, you can't do it with Contains. The Contains takes a string, not a pattern, it's how the method signature is done. But you can do it using i.e. StartsWith and EndsWith together. You mean that \% is a

[Firebird-net-provider] How can I use % inside of a contatins string?

2010-08-21 Thread Marco Castro
point of view, \% is not the best code. Or is there a way to get this code: LIKE '%MARC%VIEI%'. In other words: I need that % is % as in the LIKE specifications, it is not part of the seek string. Thanks, Marco Castro