Re: [Firebird-net-provider] Error in CF

2008-05-07 Thread Jiri Cincura
On 5/7/08, Mocte Sandoval [EMAIL PROTECTED] wrote:
  I don't know what could be causing this. It is my first experience with
  Compact Framework,  Can anyone help me please ?

You have to use build for .NET CF of FirebirdClient.

-- 
Jiri {x2} Cincura (CTO x2develop.com)
http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
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 error using .NET Provider

2008-05-07 Thread Carlos Guzmán Álvarez
Hello:
 I don't know what could be causing this. It is my first experience with 
 Compact Framework,  Can anyone help me please ?
   
Have you done a rebuild of the provider sources using the Compact 
Framework ??


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
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] Reopened: (DNET-162) Exception message: No message for error code .... found instead of normal error messages

2008-05-07 Thread Jiri Cincura (JIRA)

 [ 
http://tracker.firebirdsql.org/browse/DNET-162?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jiri Cincura reopened DNET-162:
---


Looks like I've found the problem. The packed build doesn't have the resources. 
Could somebody please test build from http://netprovider.cincura.net/ ? This 
seesm to be working fine, for me.

Thanks.

 Exception message: No message for error code  found instead of normal 
 error messages
 --

 Key: DNET-162
 URL: http://tracker.firebirdsql.org/browse/DNET-162
 Project: .NET Data provider
  Issue Type: Bug
Affects Versions: 2.5.0 Alpha 2
 Environment: Firebird Superserver 2.1.0.17798
 WinXP SP2
Reporter: Andre Grohmann
Assignee: Jiri Cincura
Priority: Minor
 Attachments: Debug.7z


 There is a Problem with the exception messages in version 2.5.0 (Subversion 
 Revision 559).
 For Example if the DataSource in the connection string is set to a wrong
 value / host, the message of the raised exception looks like:
 No message for error code 335544721 found
 Nearly every exception message I have seen looks like this, respectively
 with another error code.
 When using .NET Provider 2.1.0 it works fine. The exception message looks
 like Unable to complete network request to host 
 Sample Code:
 static void Main(string[] args)
 {
 FbConnectionStringBuilder csb = new FbConnectionStringBuilder();
 csb.DataSource = localhost;
 csb.Dialect = 3;
 csb.Database = C:\\temp\\TEST.GDB;
 csb.UserID = SYSDBA;
 //wrong password
 csb.Password = **;
 FbConnection con = new FbConnection(csb.ToString());
 try
 {
 con.Open();
 }
 catch (Exception ex)
 {
 Console.WriteLine(ex.Message);
 }
 finally
 {
 if (con != null)
 {
 con.Close();
 }
 }
 Console.ReadLine();
 }
 exception message with version 2.1.0 is:
 Your user name and password are not defined. Ask your database administrator 
 to set up a firebird login.
 with version 2.5.0:
 No message for error code 335544472 found.

-- 
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 the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
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 in CF

2008-05-07 Thread Mocte Sandoval
Thanks Jiri,

Where can i find it ?


Jiri Cincura [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]
 On 5/7/08, Mocte Sandoval [EMAIL PROTECTED] wrote:
  I don't know what could be causing this. It is my first experience with
  Compact Framework,  Can anyone help me please ?

 You have to use build for .NET CF of FirebirdClient.

 -- 
 Jiri {x2} Cincura (CTO x2develop.com)
 http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com

 -
 This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
 Don't miss this year's exciting event. There's still time to save $100.
 Use priority code J8TL2D2.
 http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
 ___
 Firebird-net-provider mailing list
 Firebird-net-provider@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

 


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
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 in CF

2008-05-07 Thread Jiri Cincura
On 5/7/08, Mocte Sandoval [EMAIL PROTECTED] wrote:
  Where can i find it ?

http://firebirdsql.org/index.php?op=filesid=netprovider

-- 
Jiri {x2} Cincura (CTO x2develop.com)
http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
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 in CF

2008-05-07 Thread Mocte Sandoval
Oops, I must be blind, I was there and didn't see the link :-D,  I'll try 
with this, thanks for your assistance.

Regards,
Mocte

Jiri Cincura [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]
 On 5/7/08, Mocte Sandoval [EMAIL PROTECTED] wrote:
  Where can i find it ?

 http://firebirdsql.org/index.php?op=filesid=netprovider

 -- 
 Jiri {x2} Cincura (CTO x2develop.com)
 http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com

 -
 This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
 Don't miss this year's exciting event. There's still time to save $100.
 Use priority code J8TL2D2.
 http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
 ___
 Firebird-net-provider mailing list
 Firebird-net-provider@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/firebird-net-provider
 


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider