Re: [Firebird-net-provider] Compact Framework version of 2.5.2

2010-08-18 Thread Daniele

> If you need it for CF2.0 you have to build it yourself.
Where to find information to compile, install and use with CF2.0 on 
VS2005 pro ?




--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-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] Compact Framework version of 2.5.2

2010-08-18 Thread Jiri Cincura
On Wed, Aug 18, 2010 at 09:30, Daniele  wrote:
> Where to find information to compile, install and use with CF2.0 on
> VS2005 pro ?

You don't have to use VS. The csc is enough. But you can use VS2008 as
well and change the target framework.

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

--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


[Firebird-net-provider] [FB-Tracker] Created: (DNET-344) EF4 BindingSource error

2010-08-18 Thread art (JIRA)
EF4 BindingSource error
---

 Key: DNET-344
 URL: http://tracker.firebirdsql.org/browse/DNET-344
 Project: .NET Data provider
  Issue Type: Bug
  Components: Entity Framework support
Affects Versions: 2.5.2
 Environment: Win7 Turkish, VS2010 Ultimate, EF4
Reporter: art
Assignee: Jiri Cincura
Priority: Critical


I adding a new record with normal code no problem.


But i added with bindindnavigator a new record an error. Firebird. Client try 
update. But record is new added and binding field to textbox.
Code is below.

qUESTIONSBindingSource.DataSource = GlobalClass.ent.QUESTIONS.OrderBy("it.ID");
zORLUKDERCESIBindingSource.DataSource = 
GlobalClass.ent.DIFFICULTY.OrderBy("it.ID");
comboBox1.DataSource = zORLUKDERCESIBindingSource;

rtbSoru.DataBindings.Add(new Binding("Rtf", qUESTIONSBindingSource, "SORURTF"));
rtbA.DataBindings.Add(new Binding("Rtf", qUESTIONSBindingSource, "ARTF"));
rtbB.DataBindings.Add(new Binding("Rtf", qUESTIONSBindingSource, "BRTF"));
rtbC.DataBindings.Add(new Binding("Rtf", qUESTIONSBindingSource, "CRTF"));
rtbD.DataBindings.Add(new Binding("Rtf", qUESTIONSBindingSource, "DRTF"));
rtbE.DataBindings.Add(new Binding("Rtf", qUESTIONSBindingSource, "ERTF"));
comboBox1.DataBindings.Add(new Binding("SelectedIndex", qUESTIONSBindingSource, 
"DIFFICULTYID"));

GlobalClass.ent.SaveChanges();--- Error

When trace in ibexpert, first sql update. it's not insert.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


[Firebird-net-provider] [FB-Tracker] Created: (DNET-345) Generated statement contains SQL parameter as constant in column selection (causes "Data type unknown" error)

2010-08-18 Thread Daniel Richter (JIRA)
Generated statement contains SQL parameter as constant in column selection 
(causes "Data type unknown" error)
-

 Key: DNET-345
 URL: http://tracker.firebirdsql.org/browse/DNET-345
 Project: .NET Data provider
  Issue Type: Bug
  Components: Entity Framework support
Affects Versions: 2.5.2
Reporter: Daniel Richter
Assignee: Jiri Cincura


Some queries result in generated SQL containing projections with an SQL 
parameter as constant in column selection. E.g.
SELECT @p__linq__2 AS "p__linq__2" FROM Table1
which results in a "Data type unknown" error.

Containing an explicit cast. the statement is executable:
   SELECT CAST(@p__linq__2 AS TIMESTAMP) AS "p__linq__2" FROM Table1

I can reproduce it by using a filter with a captured parameter and a grouping 
followed by a projection selecting both a group aggregate and the group itself:

   DateTime dateTime = DateTime.Now;
   var query = this.objectContext.TABLE1
.Select(entity => new { entity.SomeDateTime, entity.SomeValue1, 
entity.SomeValue2 })
.Where(entity => entity.SomeDateTime>dateTime)
.GroupBy(entity => entity.SomeValue1)
.Select(group => new
{
Sum = group.Sum(entity => entity.SomeValue2),
Values = group
})
.ToList();

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-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] Compact Framework version of 2.5.2

2010-08-18 Thread Daniele
  Il 18/08/2010 10.46, Jiri Cincura ha scritto:
> You don't have to use VS. The csc is enough. But you can use VS2008 as
> well and change the target framework.
Thanks adopt the VS2008 then. Where can I find complete information on 
how to compile, install and use the connector?
The VS2010 also serves the purpose?

--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


[Firebird-net-provider] Data types returned by FbDataReader.GetValue

2010-08-18 Thread Steve Boyd
Is there some place I can find the type of .Net Object returned by 
FbDataReader.GetValue for each native Firebird data type?  For example, 
Varchar returns a String but other data types (especially the numeric 
types) don't appear to be that obvious.  I've tried looking in the 
source but all that C# is too opaque for a Delphi programmer like me.


Your help is appreciated.

Thank You

--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-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] Compact Framework version of 2.5.2

2010-08-18 Thread Jiri Cincura
On Wed, Aug 18, 2010 at 16:00, Daniele  wrote:
> Where can I find complete information on

Probably nowhere. Just define NET_CF directive and build for CF using
csc (or VS).

> how to compile, install and use the connector?

You don't have to install, there's no such process in WM/WinCE. Usage
is same as for normal FW, the codebase is same.

> The VS2010 also serves the purpose?

No, because VS2010 has no support for WM/CF. :(

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

--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-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] Data types returned by FbDataReader.GetValue

2010-08-18 Thread Gerdus van Zyl
see 
http://www.firebirdsql.org/dotnetfirebird/firebird-and-dotnet-framework-data-types-mapping.html

On Wed, Aug 18, 2010 at 10:22 PM, Steve Boyd  wrote:
> Is there some place I can find the type of .Net Object returned by
> FbDataReader.GetValue for each native Firebird data type?  For example,
> Varchar returns a String but other data types (especially the numeric types)
> don't appear to be that obvious.  I've tried looking in the source but all
> that C# is too opaque for a Delphi programmer like me.
>
> Your help is appreciated.
>
> Thank You
>
>
> --
> This SF.net email is sponsored by
>
> Make an app they can't live without
> Enter the BlackBerry Developer Challenge
> http://p.sf.net/sfu/RIM-dev2dev
> ___
> Firebird-net-provider mailing list
> Firebird-net-provider@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/firebird-net-provider
>
>



-- 
Gerdus van Zyl

--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-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] Data types returned by FbDataReader.GetValue

2010-08-18 Thread Jiri Cincura
On Wed, Aug 18, 2010 at 22:22, Steve Boyd  wrote:
> Is there some place I can find the type of .Net Object returned by
> FbDataReader.GetValue for each native Firebird data type?  For example,
> Varchar returns a String but other data types (especially the numeric types)
> don't appear to be that obvious.  I've tried looking in the source but all
> that C# is too opaque for a Delphi programmer like me.

Best way is probably to check FbMetaData.xml.

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

--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-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] Data types returned by FbDataReader.GetValue

2010-08-18 Thread Jiri Cincura
On Wed, Aug 18, 2010 at 22:50, Gerdus van Zyl  wrote:
> see 
> http://www.firebirdsql.org/dotnetfirebird/firebird-and-dotnet-framework-data-types-mapping.html

This information is not correct.

Nothing under http://www.firebirdsql.org/dotnetfirebird/ is up to date.

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

--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


[Firebird-net-provider] Viziteaza profilul meu Netlog

2010-08-18 Thread Simona Moga
Hei,

Am creat un profil Netlog cu pozele mele, filme, bloguri si evenimente si vreau 
sa te adaug ca prieten astfel ca tu sa il poti vedea! Dupa conectare, iti poti 
crea propriul tau profil.

Arunca o privire:
http://ro.netlog.com/go/mailurl/-bT0yNzM0NzI2MzcmbD0xJmdtPTM3JnU9JTJGZ28lMkZyZWdpc3RlciUyRmlkJTNEMTAzNjgzNTE3NyUyNmklM0R0OTE_

Urari,
Simona


Nu mai vrei sa primesti invitatii de la prietenii tai?
http://ro.netlog.com/go/mailurl/-bT0yNzM0NzI2MzcmbD0yJmdtPTM3JnU9JTJGZ28lMkZub21haWxzJTJGaW52aXRlJTJGZW1haWwlM0QtWm1seVpXSnBjbVF0Ym1WMExYQnliM1pwWkdWeVFHeHBjM1J6TG5OdmRYSmpaV1p2Y21kbExtNWxkQV9fJTI2Y29kZSUzRDEzNDExMDQyJTI2aWQlM0QxMDM2ODM1MTc3JTI2aSUzRHQ5Mg__
Don't want to receive invitations from your friends anymore?
http://ro.netlog.com/go/mailurl/-bT0yNzM0NzI2MzcmbD0zJmdtPTM3JnU9aHR0cCUzQSUyRiUyRmVuLm5ldGxvZy5jb20lMkZnbyUyRm5vbWFpbHMlMkZpbnZpdGUlMkZlbWFpbCUzRC1abWx5WldKcGNtUXRibVYwTFhCeWIzWnBaR1Z5UUd4cGMzUnpMbk52ZFhKalpXWnZjbWRsTG01bGRBX18lMjZjb2RlJTNEMTM0MTEwNDIlMjZpZCUzRDEwMzY4MzUxNzclMjZpJTNEdDky
--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev ___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider