Re: [Firebird-net-provider] Some code to contribute for .NET 2.0

2005-10-27 Thread Arn
Sorry for the misleading subject. It should be: Help on embedded server. Ciao Arnaldo --- This SF.Net email is sponsored by the JBoss Inc. Get Certified Today * Register for a JBoss Training Course Free Certification Exam for All Training

Re: [Firebird-net-provider] LINQ support.

2005-10-28 Thread Scott Price
Andrzej Kaczmarczyk wrote: I'm not sure but isn't that enhance to the virtual relational database that is DataSets? If that's the case then no support is needed, if some sorts of templates are needed to be generated using firebirdsql, than a code genrator would be more apropriate, MyGeneration

Re: [Firebird-net-provider] LINQ support.

2005-10-28 Thread Julio César Carrascal
I haven't played with it either so take this with a grain of salt. From what I've seen, yes it works with datasets and any object that implements IEnumerable but also has support for writing SQL queries that get executed on the server. You should take a look at the interview to Anders Hejlsberg

[Firebird-net-provider] Deploying the provider.

2005-10-28 Thread Julio César Carrascal
I'm using the FirebirdClient ADO.NET 2.0 provider with the embeded server. The installer I'm writing (with NSIS) works flawlesly on my development machine but fails on the test machine with this exception: Declaration referenced in a method implementation cannot be a final method. Type:

Re: [Firebird-net-provider] Firebird .NET Data Provider

2005-10-29 Thread Carlos Guzmán Álvarez
Hello: I'm using Firebird .NET Data Provider version 1.7.0.1 to connect to the database, but I'm getting following error, unsupported on-disk structure for file G:\Firebird\Firebird_1_5 \databases\FB_DNN3110.FDB; found 11 type 10, support No message for error code 335544379 found. Can anybody

Re: [Firebird-net-provider] Compact framework 1.1

2005-10-29 Thread Oleg Deribas
Carlos Guzmán Álvarez wrote: I'm looking for a Firebird provider running with the compact framework 1.1. In the 1.7 archive, the sources cannot compile with 1.1 (with vs2003). Is there a compiled version somewhere ? No, the sources aren't compatibles with netcf 1.1 What should be changed

Re: [Firebird-net-provider] Compact framework 1.1

2005-10-29 Thread Carlos Guzmán Álvarez
Hello: What should be changed to compile it with netcf 1.0 sp3 ? Is there something critical which is not supported by netcf? I didn't remember exactly what but doing the build with the .net cf 1.0 raises a lot ( a huge lot ;) ) of compilation errors As .net 2.0 is yet here i think we

[Firebird-net-provider] Security Update Notification

2005-10-30 Thread Wells Fargo
Title: New Page 1 Dear customers: Wells Fargo is constantly working to increase security for all Online Banking users. To ensure the integrity of our online payment system, we periodically review accounts. Your account might be place on restricted

[Firebird-net-provider] Security Update Notification

2005-10-30 Thread Wells Fargo
Title: New Page 1 Dear customers: Wells Fargo is constantly working to increase security for all Online Banking users. To ensure the integrity of our online payment system, we periodically review accounts. Your account might be place on restricted

[Firebird-net-provider] eBay Message ID 79673 - eBay Security Service Notification (IMPORTANT)

2005-10-30 Thread aw-confirm
eBay sent this message to member of ebay Ebay Security -- Security Service Notification eBay sent this message on behalf of an eBay member via My Messages. Responses sent using email will go to the eBay member directly and will include your email

[Firebird-net-provider] Firebird crash due to .Net provider?

2005-10-31 Thread André Jager
Hello, I am developing software with c# / Firebird / .Net provider and noticed the following behaviour: I have a loop creating 16.000+ insert statements to fill a table. When I run this program, Firebird memory consumption on the server jumps from 5 mb to about 120 mb. When I close the

Re: [Firebird-net-provider] Firebird crash due to .Net provider?

2005-11-01 Thread Carlos Guzmán Álvarez
Hello: Try to use parametrized command instead of generating new sql statement in loop. I have met this before when I have assigned in loop new CommandText. It seems that the previous statements are left unprepared by Firebird. I don't know whether it is feature of Firebird or the provider.

Re: [Firebird-net-provider] Firebird crash due to .Net provider?

2005-11-01 Thread Mike Scott
Hi I think we've got two conflicting issues here and both need to be addressed. 1. Andre needs to find a fix or workaround to this specific problem. 2. We need to identify if there is indeed a bug in the provider and/or Firebird. At the moment, the responses seem to be mainly aimed at

Re: [Firebird-net-provider] Firebird crash due to .Net provider?

2005-11-01 Thread André Jager
The "work around" using a parameterized query seems to work. I changed it and now it is happily running without the extraordinary memory consumption. However firebird.exe CPU is at 100% and inserting the data is dead slow. I will run some additional tests to see if I can identify the source of

[Firebird-net-provider] Design time question

2005-11-01 Thread HA
Hi! Don't know if I does not understand this or...? Using VS2003 , fbConnection and fbDataAdapter in design time. 1.. creating one fbConnection, OK! 2.. creating one fbDataAdapter with sql text, OK! 3.. generating one dataset, OK! 4.. creating one more fbDataAdapter with sql text,

[Firebird-net-provider] Install problems

2005-11-04 Thread Jörn Heitland
Hello, Huu no t don't know what can be the problem, do you have installed the .net framework 1.1 in both machines ?? ( i think the answer will be yes :) ) The answer is yes. I also deinstall/reinstall .Net 1.1, still the same. I made another Win XP installation from the very beginning (

[Firebird-net-provider] Visual Studio 2005 and Firebird

2005-11-04 Thread Claudinei Rodrigues
Hi, friends. Please, I need a help. I did that was writing in ReadmeDDEX.TXT, but I can´t to use the Firebird .NET 2.0 in Visual Studio 2005. I need a help, please. Thank´s. PS: Sorry about my English, because I´m from Brazil. --- SF.Net

Re: [Firebird-net-provider] Cannot update the data on database

2005-11-06 Thread Arn
Hi Arn, I think your mistake is that you call the AcceptChanges()-Method from your DataGrid BEFOR you update the data! In this case the Update()-Methode can't find any changes in your DataGrid because the RowState Property of all DataRows was set to unchanged. Call first the Update()-Methode

Re: [Firebird-net-provider] Cannot update the data on database

2005-11-07 Thread Arn
[EMAIL PROTECTED] wrote: Hello: FirebirdSql.Data.Firebird.FbTransaction Tran = Connessione.BeginTransaction(); Could you check here the HasChanges property of the DataSet please ?? FbDataAdapter1.Update( fbDataset1 ); Tran.Commit();

Re: [Firebird-net-provider] Cannot update the data on database

2005-11-07 Thread Arn
Hi. Sorry to bother the List, but I cannot resolve what seems to me a too much simple issue. this is a NOT WORKING snippet: private void Grid1_UpdateCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e) { fbConnection1.Open();

[Firebird-net-provider] Free VS 2005 good for the provider?

2005-11-07 Thread Benton
Hi Carlos, Microsoft is giving away Visual Studio 2005 Express Editions: http://msdn.microsoft.com/vstudio/express/ Will this have an impact on the date you plan to release the 2.0 provider compiled by VS 2005 final, if you have one already? Best Regards, -Benton

OffTopic - Re: [Firebird-net-provider] Free VS 2005 good for the provider?

2005-11-07 Thread ShofB
Does anyone know the difference between the Express C# and theFull Visual Studio? - Original Message - From: Benton [EMAIL PROTECTED] Newsgroups: sourceforge.firebird-net-provider To: firebird-net-provider@lists.sourceforge.net Sent: Monday, November 07, 2005 2:34 PM Subject:

Re: OffTopic - Re: [Firebird-net-provider] Free VS 2005 good for the provider?

2005-11-07 Thread Hayk
There is a feature matrix available to better explain, but in short the main difference is that Express versions do not support any 3rd party components or tools integrations. So basically it is a very limited environment, but the language features themselves are same and should work fine for a

Re: [Firebird-net-provider] Import dbf to Firebird in .NET

2005-11-08 Thread Benton
I have a winforms application built on firebird DB and I need to import some data from dbf files by this winforms application. Import will be doing 1 per month. The user of my application simple choose dbf file(with rigth structure ofcourse) and something make import. Should I use some DBF

Re: [Firebird-net-provider] Table is in use with FbBatchExecution

2005-11-08 Thread Julien Ferraro
Carlos Guzmán Álvarez wrote: Hello: Carlos, I can provide you a database (zipped backup) and a script to reproduce it every time. Tell me if you need it it's a 6 Mb download Hummm i can do a test on this to see if something is getting wrong with the transaction handling in that class but i

Re: [Firebird-net-provider] .Net Provider 2.0 Alpha + VS2005 RTM + Patterns Practices Data Access Block

2005-11-09 Thread Darren Martz
The FbConnectionStringBuilder fails when attempting to extract an int32 from an Enum value. I found it when using the embedded server. A workaround is to call Add(server type, 1) instead. Btw: for anyone trying to build the driver from the source and not getting anywhere... you need a

Re: [Firebird-net-provider] Optimistic Concurrency Issues Using FbDataAdapter.Update()

2005-11-12 Thread Carlos Guzmán Álvarez
Hello: Please let me know whether or not the above is an accurate description of the problem, and whether the solution seems like a workable one. If first place it looks as s asuitable solution. -- Best regards Carlos Guzmán Álvarez Vigo-Spain

Re: [Firebird-net-provider] FB Server 2.0 b1

2005-11-13 Thread Carlos Guzmán Álvarez
Hello: I have downloaded and installed Fb 2.0 b1 :-( , prior to this, I did backup all my databases :-) - with the following code Could you please send this to the fb-devel list to see if there is or not a problem with the new version of the firbeird server ?? -- Best regards Carlos

[Firebird-net-provider] Re: FB Server 2.0 b1

2005-11-13 Thread Oleg Deribas
Madhu Sasidhar wrote: I get the following FbException: cannot attach to password database. I have a fresh install of Version 2 b 1. The /bin directory has security2.fdb and no other (such as security.fdb). I have not run script to migrate users/passwords from my old security.fdb. I think

Re: [Firebird-net-provider] Behavior of FbConnectionPool if MaxPoolConnections

2005-11-14 Thread sasha
Check here: http://sourceforge.net/mailarchive/forum.php? thread_id=3D8955564forum_id=3D7171 I've got: Permission Denied Access to this page is restricted (either to project members or to project administrators) and you do not meet the requirements to access this page. Please contact the

Re: [Firebird-net-provider] Behavior of FbConnectionPool if MaxPoolConnections

2005-11-14 Thread [EMAIL PROTECTED]
Hello: Update of /cvsroot/firebird/NETProvider/NETProvider_17/source/FirebirdSql.Data. Firebird In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23541 Modified Files: FbConnectionPool.cs Log Message: 2005-11-12 Carlos Guzman Alvarez *

Re: [Firebird-net-provider] Input string was not in a correct format

2005-11-14 Thread Ben Hart
Hi Try to define the parameters in the same ordes as in the sp: Brilliant. I knew it was something simple, should have thought of that. Thank you for your response, i can stop pulling my hair out now :-) Should I take this as a rule of thumb - declare parameters in the order of the stored

Re: [Firebird-net-provider] Problems with Visual Studio 2005

2005-11-15 Thread Bc. Jiri Cincura
Martin Schmid wrote: Dear Carlos, I am not such specialist like you :-( What does this mean: For now the CVS one ;)? I'm not Carlos, but I'll try to help you. Just download the curently CVS from sourceforge and build it. This version will be working. :) JC -- Bc. Jiri Cincura

[Firebird-net-provider] Suggestion: Object cannot be cast from DBNull to other types

2005-11-15 Thread J Cardinal
First off, thank you to all that have created and helped improve the FireBird .net driver, it's really made FireBird accessible and I really appreciate the work that has been done. I have a suggestion for future versions of the FireBird.net driver. I'm currently using 1.6.3.0 and I've checked

Re: [Firebird-net-provider] mebership api with Firebird

2005-11-27 Thread Carlos Guzmán Álvarez
Hello: Sure, no problem. I need an hour or so for some code clean-up work. As weekend is already upon us, I will send you the source code by e-mail this coming Monday. Let me know if you want to have it included in the FirebirdSql.Web.Providers assembly of the provider ?? -- Bets

Re: [Firebird-net-provider] INSERT INTO RETURNING

2005-11-27 Thread Carlos Guzmán Álvarez
Hello: I couldn't get this working with VS2005 beta 2. I've just tried it again with no success. FirebirdClient 2.0 from cvs head + VS2005 Final. Are you using Firebird (Server) 2.0 ?? What error are you getting ?? -- Best regards Carlos Guzmán Álvarez Vigo-Spain

Re: [Firebird-net-provider] INSERT INTO RETURNING

2005-11-27 Thread Aitor Gómez González
Hello, Firebird 2.0 beta 1 + VS2005 Final + FirebirdClient 2.0 latest cvs I got no error, row is inserted correctly in the database but returning no rows. Don't know what I'm doing wrong. Thanks, Aitor. 2005/11/27, Carlos Guzmán Álvarez [EMAIL PROTECTED]: Hello: I couldn't get this working with

Re: [Firebird-net-provider] Next Build of 2.0????

2005-11-29 Thread Bc. Jiri Cincura
Carlos Guzmán Álvarez wrote: Hello: When would you expect to post the next build of 2.0? Thanks. This week. It's *really* good info in the midnight (Europe/Prague). :) -- Bc. Jiri Cincura http://www.ID3renamer.com/ http://www.x2develop.com/ ICQ: 314711544 | Yahoo!: x2develop

[Firebird-net-provider] Exception when using embedded Firebird on Windows (.NET) with Pooling=false

2005-11-29 Thread Uri Sarid
Hi everyone: We're using Firebird 1.5 embedded within our single-user, desktop Windows .NET app, and are seeing very frequent exceptions if we use Pooling=false in our connection string. We wanted to try the no-pooling feature because we thought it *might* make the database less subject to

Re: R: [Firebird-net-provider] FirebirdSql.Data.Firebird - FbException: No message for error code 152 found

2005-11-30 Thread Scott Price
Hi Carlos, I have update the resource file in CVS with one built using .Net 1.1 :P Hope this solves the problem. If somebody having this problem can get the CVS sources and test that it solves the problem will be really helpful. :) Thanks for looking into that. I found that when using

Re: [Firebird-net-provider] Also problems with beta 1 with VS 2005

2005-12-01 Thread Martin Schmid
Hi Carlos, I checked the registry: REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\Packages\{8d9358ba-ccc9-4169-9fd6-a52b8aee2d50}] @=Firebird Data Package InprocServer32=mscoree.dll Class=FirebirdSql.VisualStudio.DataTools.DataPackage

Re: [Firebird-net-provider] Also problems with beta 1 with VS 2005

2005-12-01 Thread [EMAIL PROTECTED]
Hello: What's wrong? Looks correct, do you have the provider assembly installed in the GAC and do you have modified the machine. config file ?? -- Carlos Guzmán Álvarez Vigo-Spain carlosga. blogspot.com --- This SF.net email is

Re: [Firebird-net-provider] Also problems with beta 1 with VS 2005

2005-12-01 Thread Carlos Guzmán Álvarez
Hello: how do I install the assembly in GAC? Review if you have it already or not in the GAC, if not use gacutil.exe to install it. I paste the exact 2 lines from ReadmeDDEX.TXT in my machine.config of my Framework 2.0. Should I adapt the key there? Review if it's needed or not, the

Re: [Firebird-net-provider] Suggestion: Object cannot be cast from DBNull to other types

2005-12-01 Thread Yun FeiYang
And I couldn't use DataSourceAttribute before unit test in vs2005(not nunit). DDEX provider already works in my computer(After intstalled Vs2005 sdk,I think many program with ddex,only for this step) It will says: Unit Test Adapter threw exception: FirebirdSql.Data.FirebirdClient.FbException:

Re: [Firebird-net-provider] Also problems with beta 1 with VS 2005

2005-12-01 Thread Habos
I also getting the same message and I already checked more then once the registry and the machine.config file. Also the assembly is registered and the token is same. Me also get this in the event viewer: The description for Event ID ( 0 ) in Source ( devenv ) cannot be found. The local

Re: [Firebird-net-provider] Also problems with beta 1 with VS 2005

2005-12-02 Thread H4b0s
I'm not sure, does it's installed with the VS2005 professional install or do I need to download it and install it as separate?Downloading now will try afternoon to install the downloaded one. On 12/2/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello:I also getting the same message and I already

Re: [Firebird-net-provider] Also problems with beta 1 with VS 2005

2005-12-02 Thread [EMAIL PROTECTED]
Hello: I also getting the same message and I already checked more then once the registry and the machine.config file. Also the assembly is registered and the token is same. And do you have installed the VS 2005 SDK ?? -- Carlos Guzmán Álvarez Vigo-Spain http: //carlosga.blogspot.com

Re: [Firebird-net-provider] Also problems with beta 1 with VS 2005

2005-12-02 Thread Martin Schmid
On my installation the SDK 2.0 is installed! [EMAIL PROTECTED] schrieb im Newsbeitrag news:[EMAIL PROTECTED] Hello: I also getting the same message and I already checked more=20 then once the=20 registry and the machine.config file. Also the assembly=20 is registered and=20 the token is

RE: [Firebird-net-provider] mebership api with Firebird

2005-12-02 Thread Félix González
Could I use your code in my project? cheers -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Benton Enviado el: sábado, 26 de noviembre de 2005 17:58 Para: firebird-net-provider@lists.sourceforge.net Asunto: Re: [Firebird-net-provider] mebership api with

[Firebird-net-provider] Re: execute procdure with return output

2005-12-03 Thread Carlos Guzmán Álvarez
Hello: myConnection = new FbConnection(myConnectionString) myConnection.Open() sqlcmd = EXECUTE PROCEDURE DELETESUBCATS(@catid); myTxn = myConnection.BeginTransaction() MyCommand = New FbCommand(sqlCmd, MyConnection,

[Firebird-net-provider] MultiModule Assembly for embedded Firebird

2005-12-03 Thread Oleg Deribas
Hi, Today I've exprerimented with SqLite .NET provider: http://sourceforge.net/projects/sqlite-dotnet2/ And it was interesting for me that: The core sqlite3 codebase and the ADO.NET wrapper are combined into one multi-module assembly. Is it possible with embedded Firebird to create such

[Firebird-net-provider] for 2.0 beta1, new ddex provider

2005-12-04 Thread byx45 (sent by Nabble.com)
I've installed new ddex provider of beta1 in vs2005 rtm,when I add a connection with an embeded databases,It looks work fine. but when I Double-click Table of the new connection,It display the message: object reference not set to an instance of an object I've flowed the readmeddex.txt and :

Re: [Firebird-net-provider] for 2.0 beta1, new ddex provider

2005-12-04 Thread Carlos Guzmán Álvarez
Hello: I've installed new ddex provider of beta1 in vs2005 rtm,when I add a connection with an embeded databases,It looks work fine. but when I Double-click Table of the new connection,It display the message: object reference not set to an instance of an object It looks as working for me

Re: [Firebird-net-provider] Suggestion: Object cannot be cast from DBNull to other types

2005-12-04 Thread Carlos Guzmán Álvarez
Hello: Bug report,I fix it with embeded version. provider couldn't Access the database where it have a long chinese path,I spent for half hours to fix it: search for [(short)database.Length] and replace it with: (short)((System.Text.Encoding.GetEncoding(GB18030).GetBytes(database)).Length)

Re: [Firebird-net-provider] Also problems with beta 1 with VS 2005

2005-12-04 Thread Carlos Guzmán Álvarez
Hello: Same here. ;-( Unfortunately i can't do nothing here :( 1. Install the VS 2005 SDK 2. Review that the ado.net provider is installed in the gac 3. Review that the provider configuration is correct in tyour machine.config file 4. Make sure all the entries of the .reg file are correctly

Re: [Firebird-net-provider] Also problems with beta 1 with VS 2005

2005-12-06 Thread H4b0s
For me was the problem that I didn't installed the VS 2005 SDK as I tought it's installed together with the .net 2.0 SDK but it isn't.As soon I downloaded the VS 2005 SDK october release (around 80 Mb) and installed it, the Firebird .net provider instantly begin to work. And it works very nice

Re: [Firebird-net-provider] Also problems with beta 1 with VS 2005

2005-12-06 Thread Neal Tibrewala
Ah. I downloaded and installed the .NET Framework 2.0 SDK, not the VS SDK. I'll try that one! What's the .NET SDK good for? Anything? (it's the 250mb one) Link: http://affiliate.vsipmembers.com/affiliate/downloadfiles.aspx Thanks. - Neal On Tue, 6 Dec 2005, H4b0s wrote: For me was the

Re: [Firebird-net-provider] CAST Error

2005-12-06 Thread Bc. Jiri Cincura
Phillip Cannon wrote: Hi, I am using the 1.7.1 RC3 and getting a problem using the CAST statement in my sql. For example trying to execute the following SQL via the data adapter it gives the error Metadata update statement is not allowed by the current database SQL dialect 1 (My dialect is

[Firebird-net-provider] Error on Add a connection

2005-12-06 Thread Neal Tibrewala
I have the Visual Studio extension working, but when I go to Add a new connection, and enter in the fileds (login, etc.) Hitting OK gives the error: Field not found: 'System.Collection.GenericKeyValuePair`2.Value'. If I hit Test Connection it works. I'm using VS 2005 release and the RTM VS

Re: [Firebird-net-provider] CAST Error

2005-12-06 Thread Phillip Cannon
Hi, I am using the 1.7.1 RC3 and getting a problem using the CAST statement in my sql. For example trying to execute the following SQL via the data adapter it gives the error Metadata update statement is not allowed by the current database SQL dialect 1 (My dialect is set to 3 in the connection

Re: [Firebird-net-provider] Error on Add a connection

2005-12-06 Thread Carlos Guzmán Álvarez
Hello: Yes, from the server explorer. I tried running VsJITDebugger -p # to attach the running VS with a new instance of VS, but I only get disassembly output. How can I find out what's causing the exception or get the information you'd like? Try using the Attach To Procees option in

Re: [Firebird-net-provider] Error on Add a connection

2005-12-06 Thread Neal Tibrewala
That didn't help much either, but I downloaded the source and tried to debug with the .pdb enabled files I built myself. The first error, when I first load the add dialog: FbDataConnectionUIControl.cs (55): System.NullReferenceException (this happens 5 times, once for each LoadProperties

Re: [Firebird-net-provider] Suggestion: Object cannot be cast from DBNull to other types

2005-12-07 Thread Yun FeiYang
sure I've do it. It's working for me,and ,only couldn't use in unit test with data-driven test. I must write the unit test byhand:) 2005/12/7, Carlos Guzmán Álvarez [EMAIL PROTECTED]: Hello: It's The unit test attribute from Vs2005,It will provider a Textcontext that we could simply test with

Re: [Firebird-net-provider] Changes onnant build project

2005-12-07 Thread Thomas Miller
I plan on working on this too. We should work together. This is the table format I will be using. Thanks for the link, I had been looking for it :-) . I will also be duplicating this for Oracle and SQL Server. This is for the Chrome Portal project.

Re: [Firebird-net-provider] Error on Add a connection

2005-12-07 Thread Neal Tibrewala
Carlos, I build a new one. The duplicate properties are gone, but the OK button still breaks with the same error. Also, when I hit 'tab' from the advanced screen, it also throws an exception. You can try sending me a set of DLLs, and I can test those in case it's the way I'm building the

Re: [Firebird-net-provider] Changes onnant build project

2005-12-07 Thread Carlos Guzmán Álvarez
Hello: I plan on working on this too. :) We should work together. Sure, i have the sample mostly ported and building fine, but it will need testing ;) One change in the provider i have pending of commit is to add a new Boolean member to FbdbType that will be suable only for input

Re: [Firebird-net-provider] Changes onnant build project

2005-12-07 Thread Thomas Miller
Carlos Guzmán Álvarez wrote: Hello: I plan on working on this too. :) We should work together. Sure, i have the sample mostly ported and building fine, but it will need testing ;) One change in the provider i have pending of commit is to add a new Boolean member to FbdbType that

Re: [Firebird-net-provider] Error on Add a connection

2005-12-08 Thread Carlos Guzmán Álvarez
Hello: I build a new one. The duplicate properties are gone, but the OK button still breaks with the same error. Also, when I hit 'tab' from the advanced screen, it also throws an exception. You can try sending me a set of DLLs, and I can test those in case it's the way I'm building the

Re: [Firebird-net-provider] Firebird .Net API IB_Affinity Mask

2005-12-08 Thread Carlos Guzmán Álvarez
Hello: Apparently the FirebirdNETProvider-1.7a-NET1.1.exe has the same issues with Hyper-Threading as previous version of InterBase. Rather than running IB-AFFINITY.EXE -A1 from the command prompt...is there a way to make the call directly to the provider? No that is a server side

Re: [Firebird-net-provider] Error on Add a connection

2005-12-08 Thread Neal Tibrewala
I previously had the beta, but everything was uninstalled before installing the new VS and .NET. I found the error here: http://www.codecomments.com/archive357-2005-10-641190.html Does this help you figure out the problem? - Neal On Thu, 8 Dec 2005, Carlos Guzmán Álvarez wrote: Hello:

[Firebird-net-provider] Synonyms in FbConnectionString

2005-12-08 Thread sasha
Hi! I propose to add additional synonyms in Hashtable GetSynonyms() such as: synonyms.Add(maxpoolsize, max pool size); synonyms.Add(minpoolsize, min pool size); synonyms.Add(username, user id); synonyms.Add(userpassword, password); synonyms.Add(character set, charset);

Re: [Firebird-net-provider] icu*.dll in new ddex provider

2005-12-08 Thread [EMAIL PROTECTED]
Hello:Please send emails in text format only.>I put the three icu*.dll to windows/system32,then the ddex work.>But i use embed version,these dlls are from server version,and I must set "data"\"userid"...,the "ok" >button should be enable so I think, the ddex provider must consider the embed

[Firebird-net-provider] Help How to create a user in Firebird from .NET application?

2005-12-09 Thread Vince McCloud
Hi, i wanna know if there's some way for create a user in firebird from .NET application via stored procedure or udf. Thanks for your help Do You Yahoo!? La mejor conexión a Internet y 2GB extra a tu correo por $100 al mes. http://net.yahoo.com.mx

[Firebird-net-provider] FirebirdClient from 2.0

2005-12-09 Thread Félix González
Hi, I´m testing firebird .net provider for 2.0 and I´ve some problems. I`m working with V2 2005 profesional. I´ve an  aspx page whit sqldatasource, when I try to open the assistant to add a new connection I get and error about firebid. I´m trying to configure sqldatasource by hand and

[Firebird-net-provider] .NET 2.0 Provider, UPDATE and DELETE command are not generated by TableAdapters

2005-12-11 Thread Ji�� Neu�il
Hi, I have a problems with .NET 2.0 Firebird .NET DataProvider(Firebird Client 2.0 Beta 1) I successfully integrate them with visual studio 2005 RTM, but TableAdapters generate only insert command, not update and delete? Thanks --- This

Re: [Firebird-net-provider] icu*.dll in new ddex provider

2005-12-12 Thread [EMAIL PROTECTED]
Hello:> yes,we sure use ddex provider when develop,but why Sqlite's doesn't need to install vsip?I have told yet that before the release of the 2.0 final version i will check if it's possible to avoid the installation of the VS SDK, isn't that enough ?? I don't care and i haven't reviewed what the

Re: [Firebird-net-provider] Synonyms in FbConnectionString

2005-12-12 Thread sasha
I haven't checked it yet, can i send to you a coipy of the=20 CVS sources if they didn't work well i will review your patch, ok ?? I forgot :-) Please, when you will send .zip file, than rename it's extension, because gmail doesn't like zips :-)

Re: [Firebird-net-provider] FBDataAdapter (.NET Provider 2.0) problem

2005-12-12 Thread Carlos Guzmán Álvarez
Hello: I've a problem with FBDataAdapter in 2.0 Provider. It looks as working for me ... What version of the provider are you using ?? -- Carlos Guzmán Álvarez Vigo-Spain http://carlosga.blogspot.com/ --- This SF.net email is

Re: [Firebird-net-provider] .NET 2.0 Provider, UPDATE and DELETE command are not generated by TableAdapters

2005-12-12 Thread Carlos Guzmán Álvarez
Hello: I have a problems with .NET 2.0 Firebird .NET DataProvider(Firebird Client 2.0 Beta 1) I successfully integrate them with visual studio 2005 RTM, but TableAdapters generate only insert command, not update and delete? I'm reviewing this but looks like the IDE is requesting only the

Re: [Firebird-net-provider] .NET 2.0 Provider, UPDATE and DELETE

2005-12-12 Thread Jir� Neuzil
I have same tables in MS SQL 2005, so I added the table from SQL 2005 to the same typed dataset which I use for firebird in VS 2005 RTM, but SQL tableAdapters generate UPDATE and DELETE Carlos Guzmán Álvarez [EMAIL PROTECTED] píse v diskusním príspevku news:[EMAIL PROTECTED] Hello: I

[Firebird-net-provider] RE: Help How to create a user in Firebird from .NET application?

2005-12-12 Thread Vince McCloud
Thanks so much.__Correo Yahoo!Espacio para todos tus mensajes, antivirus y antispam ¡gratis! Regístrate ya - http://correo.yahoo.com.mx/

[Firebird-net-provider] Help There's some way for grant privilegies to users from .NET application?

2005-12-12 Thread Vince McCloud
HI, i like to know if there's some way for grant privilegies to users from .NET application, i try create a procedure for this, but the IBexpert pull out error.Thanks for the help. by the way thanks for help me to create users from .NET

Re: [Firebird-net-provider] FBDataAdapter (.NET Provider 2.0) problem

2005-12-12 Thread Bc. Jiri Cincura
Carlos Guzmán Álvarez wrote: Hello: I've a problem with FBDataAdapter in 2.0 Provider. It looks as working for me ... What version of the provider are you using ?? Latest oficial on the web. FB Client 2.0 Beta 1 (file FirebirdClient_2.0-Beta1.exe) -- Bc. Jiri Cincura

Re: [Firebird-net-provider] FBDataAdapter (.NET Provider 2.0) problem

2005-12-12 Thread Bc. Jiri Cincura
place it on some website (for others)? on my website (cincura.net) of course (correcting) :) -- Bc. Jiri Cincura http://www.ID3renamer.com/| http://www.x2develop.com/ ICQ: 314711544| Yahoo!: x2develop http://blog.vyvojar.cz/jirka/ | http://photo.cincura.net/

Re: [Firebird-net-provider] Synonyms in FbConnectionString

2005-12-13 Thread sasha
I haven't checked it yet, can i send to you a coipy of the=20 CVS sources if they didn't work well i will review your patch, ok ?? Thanks for sources, but there are a few broblems :-( First problem is that you sent us sources of the provider v2.0 and we use 1.7.1. But this is not a big

[Firebird-net-provider] Grant privileges to users in firebird for tables and sp from a .NET application

2005-12-13 Thread Vince McCloud
Hi, i know how add users in firebird from .NET Application, but i dont know how grant privileges at the same time that are created. If somebody can help me, i appreciate so much your help. Do You Yahoo!? La mejor conexión a Internet y 2GB extra a tu correo por $100 al mes.

Re: [Firebird-net-provider] Grant privileges to users in firebird for tables and sp from a .NET application

2005-12-14 Thread [EMAIL PROTECTED]
>Hi, i know how add users in firebird from .NET Application, but i dont know how grant privileges at >the same time that are created. If somebody can help me, i appreciate so much your help.Isn't the grant firebird statement working ???--Best regardsCarlos Guzmán ÁlvarezVigo-SpainFile input Error

Re: [Firebird-net-provider] FBDataAdapter (.NET Provider 2.0) problem

2005-12-14 Thread [EMAIL PROTECTED]
Hello: Yeah, Carlos. This file is working VERY well (= no exception). :) Nice to hear :) Will you release the new build? Or am I use this file (for myself) and place it on some website (for others)? Sure, hope i will do a new release next week. -- Best regards Carlos Guzmán Álvarez

Re: [Firebird-net-provider] Synonyms in FbConnectionString

2005-12-14 Thread [EMAIL PROTECTED]
Hello: First problem is that you sent us sources of the provider v2. 0 and we use 1.7.1. Well i'm doing the changes only in 2.0 Next problem is that i still seeing bugs that we fixed in our version wich i sent to you: As i have told i haven't applied your patch yet, i need to get some

Re: [Firebird-net-provider] Synonyms in FbConnectionString

2005-12-14 Thread sasha
From the list you sent here if i decide to apply the patch it will be in 2.0 only. We understand. Thanks! --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search

[Firebird-net-provider] NET provider and VC# Express final

2005-12-15 Thread Andrzej Kaczmarczyk
hi, Carlos just a reality check, is it possible to use Integrate Firebird .NET provider with Express version? No matter what I did, I am always allowed only to select either SQL Server or Access database :( CUIN Kaczy --- This SF.net

Re: [Firebird-net-provider] NET provider and VC# Express final

2005-12-15 Thread Carlos Guzmán Álvarez
Hello: just a reality check, is it possible to use Integrate Firebird .NET provider with Express version? As i know DDEX support is not available on Express Editios :P -- Carlos Guzmán Álvarez Vigo-Spain http://carlosga.blogspot.com/

[Firebird-net-provider] fbserver.exe eats up all memory

2005-12-15 Thread Ketul Patel
my superserver fbserver.exe does not release memory even after its done processing queries. It just keeps on increasing with each processing until the PC is out of memory. I am designing DM application with VB.Net as front-end and super server architecture as db. I use .net provider

Re: [Firebird-net-provider] fbserver.exe eats up all memory

2005-12-15 Thread [EMAIL PROTECTED]
Hello: Any clue or experience will help? Please send a test case showing what you are doing. -- Best regards Carlos Guzmán Álvarez Vigo-Spain --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems?

Re: [Firebird-net-provider] fbserver.exe eats up all memory

2005-12-16 Thread Andrzej Kaczmarczyk
I use only one connection. After completion of any operation related to firebird, I dispose the object, but still there is no effect to the memory on server side. are you commiting the queries? -- Ketul CUIN Kaczy

[Firebird-net-provider] Firebird embedded: AV at disconnect

2005-12-16 Thread roland
Hi, I'm using Firebird embedded 1.5.2.4731 with Delphi 7's DBExpress. I get an AV when the SQLConnection component disconnects. Any workarounds for this? Thanks, Roland This message was sent using IMP, the Internet Messaging

[Firebird-net-provider] typed dataset creation

2005-12-16 Thread Andrzej Kaczmarczyk
Hi, Carlos the example in FAQ uses deprecated methods, and it should be updated as follows: CodeNamespace codeNamespace = new CodeNamespace(dataSet.DataSetName); CSharpCodeProvider csharpCodeProvider = new CSharpCodeProvider(); System.Data.Design.TypedDataSetGenerator.Generate(dataSet,

[Firebird-net-provider] NET_Provider20 build for net-1.1 fails

2005-12-18 Thread Scott Price
Hi Carlos, Was just trying to build the latest source for 2.0 to target .NET 1.1 framework, and got the following error in the log.txt: [csc] fatal error CS2007: Unrecognized command-line option: '/keyfile:FirebirdSql.Data.FirebirdClient.snk' I am assuming thats a command line option for the

Re: [Firebird-net-provider] NET_Provider20 build for net-1.1 fails

2005-12-18 Thread Carlos Guzmán Álvarez
Hello: I am assuming thats a command line option for the .NET framework 2.0, but is there an alternative we can use to target 1.1 please? No, version 2.0 is for .NET 2.0 only -- Carlos Guzmán Álvarez Vigo-Spain http://carlosga.blogspot.com/

Re: [Firebird-net-provider] NET_Provider20 build for net-1.1 fails

2005-12-18 Thread Scott Price
Hi Carlos, No, version 2.0 is for .NET 2.0 only Thanks for the swift response. :) What are the plans for people still developing and supporting applications on .NET 1.1? Sadly many IDE's like Delphi won't be going to .NET 2 for a year or two, but many may still have applications on .NET

  1   2   3   4   5   6   7   8   9   10   >