[Firebird-net-provider] Install DDEX

2010-01-17 Thread nanali
Hi, Do I really have to install the VS SDK in order to install DDEX. ? TIA, Bjoern -- Throughout its 18-year history, RSA Conference consistently attracts the world's best and brightest in the field, creating

[Firebird-net-provider] FbScript

2010-01-31 Thread nanali
Hi, FbScript script = new FbScript(employee.sql); script.Parse(); does not work for me. In other words how do I use the ISQL script support. ? I am using the 2.5.1 provider. TIA, Bjoern -- The Planet: dedicated

[Firebird-net-provider] CommandType .. What's wrong ?

2010-02-17 Thread nanali
// Firebird Connection private static string fbConnStr = Properties.Settings.Default.BizpracDevelopment; private static FbConnection fbc = new FbConnection(@fbConnStr); // Firebird Insert Commands FbCommand cmdInsertCC = new FbCommand( insert into COST_CENTRES(COS_ID,

[Firebird-net-provider] FbBackup v 1.7 code

2010-04-13 Thread nanali
Hi, I would like to embed Backup and Restore functionality in my app. I found an older 1.7 snippet. But this one does not work.. using FirebirdSql.Data.FirebirdClient; using FirebirdSql.Data.Isql; FbBackup backupSvc = new FbBackup(); THE type or namespace could not be found ...

Re: [Firebird-net-provider] FbBackup v 1.7 code

2010-04-13 Thread nanali
Thanks !! Ivan, FirebirdSql.Data.Services is what I a looking for. So this snippet seems to work .. (compiles) have to test it more,though. private void barButtonBackup_ItemClick(object sender, ItemClickEventArgs e) { string connectionString =

[Firebird-net-provider] MissingSchemaAction

2010-09-05 Thread nanali
-- This SF.net Dev2Dev email is sponsored by: Show off your parallel programming skills. Enter the Intel(R) Threading Challenge 2010. http://p.sf.net/sfu/intel-thread-sfd

[Firebird-net-provider] MissingSchemaAction

2010-09-05 Thread nanali
Hi, due to the fact that we have database concurrency problems /(in a single user test environment)/ we try to eliminate potential errors. We are using VS2008 and typed datasets. Instead of the default Fill we are using Retrieve.. nothing special just + WHERE deleted = 0 // to implement do/undo

Re: [Firebird-net-provider] MissingSchemaAction

2010-09-05 Thread nanali
have any ideas/experience what can cause this concurrency errors, your feedback is more than welcome. Our current work around ; XXXTableAdapter.Adapter.ContinueUpdateOnError = true should not be the only solution. Desperately awaiting your feedback Bjoern On 05/09/2010 14:50, nanali wrote