Re: Arithmetic operations and PreparedStatments

2011-02-02 Thread Bryan Pendleton
update T_Professor set weight_In_B_D = weight_In_B_D + ?) - ?) * ?) / ?) where (id = ?) I'm not sure why the arithmetic is carried out using different intermediate scale and precision when you use dynamically substituted values for the constants in your expressions. Did you try using the

Connecting to Derby from C#

2011-02-02 Thread Petkun, Jeffrey
Hi, I am currently working on a software project that involves connecting to a Java database through a C# GUI. I was wondering if there's a way to connect to a Derby database using an ODBC connection so that I can do this. Please let me know if this is possible. Thank You, Jeff Petkun IT

Re: Connecting to Derby from C#

2011-02-02 Thread bruehlicke
Not that I have tried this but, maybe this can help : http://www.jnbridge.com/ On Fri, Jan 28, 2011 at 2:09 PM, Petkun, Jeffrey jeffrey.pet...@citi.com wrote: Hi, I am currently working on a software project that involves connecting to a Java database through a C# GUI.  I was wondering if

Re: Arithmetic operations and PreparedStatments

2011-02-02 Thread Marco Rico-Gomez
update T_Professor set weight_In_B_D = weight_In_B_D + ?) - ?) * ?) / ?) where (id = ?) I'm not sure why the arithmetic is carried out using different intermediate scale and precision when you use dynamically substituted values for the constants in your expressions. Did you try