First  |  Prev |  Next  |  Last
Pages: 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
what is a phantom read ?
Here is a Phantom read example I read: /* Query 1 */ SELECT * FROM users WHERE age BETWEEN 10 AND 30; return 2 records. /* Query 2 */ INSERT INTO users VALUES ( 3, 'Bob', 27 ); COMMIT; /* Query 1 */ SELECT * FROM users WHERE age BETWEEN 10 AND 30; return 3 records. see It seems ... 20 Jun 2010 12:21
consuming the web service
Hi, I've been tasked with building an application that will consume this web service: http://epfr.com/epfrdata.asmx?WSDL I know java and tomcat, but I know nothing about SOAP and WSDL. I hoping that someone will point me in the right direction for approaching this task? Is axis2 the right tool to look a... 21 May 2010 17:13
JARs versus Web-Start
In article <Jar-20100520013251(a)ram.dialup.fu-berlin.de>, ram(a)zedat.fu-berlin.de (Stefan Ram) wrote: When one follows a web link to an executable JAR on a webserver, it will be transferred via HTTP and then executed (for example, under Windows, after Java was installed). The operating system migh... 20 May 2010 06:12
A little afternoon source code
On 19-05-2010 11:16, Stefan Ram wrote: Tom Anderson<twic(a)urchin.earth.li> writes: private static String header = "" + "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n" + "<initech:tps-report><initech:coversheet> etc"; (After having read this, and also having read some of the response... 19 May 2010 20:29
Regular expression search and replace
Below are the example of possible input strings: myparam1=myvalue1&param1=value2&param3=value3 &myparam1=myvalue1&param1=value2&param3=value3 ?myparam1=myvalue1&param1=value2&param3=value3 "myparam1=myvalue1&param1=value2&param3=value3" "&myparam1=myvalue1&param1=value2&pa... 26 May 2010 14:41
WANdisco Gives Back to the Subversion Community
george.powell(a)wandisco.scum wrote: Profits from WANdisco Subversion Support Contract Sales Go Toward Subversion's Continuing Development and Support the Activities of the Subversion community. httq://svn.wandispam.scum/WANdisco_Gives_Back_to_the_Subversion_Community Spam, spam, spam, spam, ... Filt... 19 May 2010 13:46
JDBC Driver and timezones
Kris Jurka I think the problem is that the Java specification for java.sql.Time requires that the date portion be filled in with 1970-01-01. So when trying to determine the zone shift to apply when printing it out, it is checking with that date instead of today's date as you are expecting. When ... 19 May 2010 12:39
[Press Release] WANdisco Gives Back to the Subversion Community
Profits from WANdisco Subversion Support Contract Sales Go Toward Subversion’s Continuing Development and Support the Activities of the Subversion community. http://svn.wandisco.com/WANdisco_Gives_Back_to_the_Subversion_Community ... 19 May 2010 11:32
php and java type mapping via SOAP
I have a matter here! At server side ( java) I have a web service with a web metod like this: getResponse( String param). At Client side (PHP) I need to call the web service by invoking the getResponse method with a String parameter.But it doesn't work! ... 19 May 2010 10:25
entity bean as being reentrant
Here is a excerpt If we define the entity bean as being reentrant, multiple clients can connect to the Entity bean & execute methods within the entity bean concurrently. Container takes care of synchronization. If we define the entity bean as non-reentrant and many clients connect to it concurrently to execute a... 19 May 2010 13:46
First  |  Prev |  Next  |  Last
Pages: 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42