User rjohnston - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T05:17:30Zhttp://stackoverflow.com/feeds/user/246http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1754996/how-to-parse-pdf-file-without-using-any-lib-or-software-in-c/1755033#17550331Answer by rjohnston for How to parse pdf file without using any lib or software in C#rjohnston2009-11-18T10:25:23Z2009-11-18T10:25:23Z<p>If you don't want to use 3rd party libraries, you'll have to implement the exact same thing yourself. I can't think of any rational reason you'd want to do that, unless it's purely a learning exercise...</p>
<p><a href="http://www.pdf-tools.com/asp/pdf-specifications.asp" rel="nofollow">http://www.pdf-tools.com/asp/pdf-specifications.asp</a></p>
<p>Good luck :)</p>
http://stackoverflow.com/questions/399204/xslt-distinct-elements-and-grouping3XSLT distinct elements and groupingrjohnston2008-12-30T00:23:57Z2009-10-23T09:23:41Z
<p>Given the following xml fragment:</p>
<pre><code><Problems>
<Problem>
<File>file1</File>
<Description>desc1</Description>
</Problem>
<Problem>
<File>file1</File>
<Description>desc2</Description>
</Problem>
<Problem>
<File>file2</File>
<Description>desc1</Description>
</Problem>
</Problems>
</code></pre>
<p>I need to produce something like</p>
<pre><code><html>
<body>
<h1>file1</h1>
<p>des1</p>
<p>desc2</p>
<h1>file2</h1>
<p>des1</p>
</body>
</html>
</code></pre>
<p>I tried using a key, like </p>
<pre><code><xsl:key name="files" match="Problem" use="File"/>
</code></pre>
<p>but I don't really understand how to take it to the next step, or if that's even the right approach. </p>
http://stackoverflow.com/questions/1435783/how-to-apply-group-by-to-this-sql-query/1435824#14358241Answer by rjohnston for how to apply Group By to this SQL Queryrjohnston2009-09-16T22:22:59Z2009-09-16T22:22:59Z<p>I don't know about Pervasive SQL, but normally you have to group by all the columns you want grouped, in this case that's all the columns (except "SALES_HISTORY_HEADER"."IN_DATE", which isn't in your desired output)</p>
<pre><code>SELECT "INVENTORY"."CODE", "INVENTORY"."INV_DESCRIPTION",
"INVENTORY"."BVSTKUOM", "INVENTORY"."INV_COMMITTED",
"INVENTORY"."ONHAND"
FROM "INVENTORY" INNER JOIN "SALES_HISTORY_DETAIL" ON "SALES_HISTORY_DETAIL"."CODE" = "INVENTORY"."CODE" INNER JOIN "SALES_HISTORY_HEADER" ON "SALES_HISTORY_HEADER"."NUMBER" = "SALES_HISTORY_DETAIL"."NUMBER"
where "INVENTORY"."PROD" like 'A6O%' AND "SALES_HISTORY_HEADER"."IN_DATE" > '20090731'
group by "INVENTORY"."CODE", "INVENTORY"."INV_DESCRIPTION",
"INVENTORY"."BVSTKUOM", "INVENTORY"."INV_COMMITTED",
"INVENTORY"."ONHAND"
</code></pre>
http://stackoverflow.com/questions/1391687/java-create-dom-element-from-element-not-document/1391716#13917165Answer by rjohnston for Java: Create DOM Element from Element, not Documentrjohnston2009-09-08T02:43:15Z2009-09-08T02:43:15Z<p>Element extends Node, and Node defines getOwnerDocument, so you could do something like this:</p>
<pre><code>e2 = e.getOwnerDocument().createElement("tag");
</code></pre>
<p><a href="http://java.sun.com/j2se/1.5.0/docs/api/org/w3c/dom/Node.html#getOwnerDocument%28%29" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/api/org/w3c/dom/Node.html#getOwnerDocument%28%29</a></p>
http://stackoverflow.com/questions/1388609/jquery-password-strength-checker/1388696#13886961Answer by rjohnston for jQuery password strength checkerrjohnston2009-09-07T10:39:46Z2009-09-07T10:39:46Z<p>On top of gs' answer, you should check the password against common dictionary words (using a hash, probably). Otherwise a weak password like 'Yellow1' will be evaluated as strong by your logic.</p>
http://stackoverflow.com/questions/1386888/jbuttons-need-to-modify-8-jtextfields-using-an-array-listen-to-buttons-or-text/1386906#13869061Answer by rjohnston for JButtons need to modify 8 JTextFields using an Array. Listen to Buttons or Text?rjohnston2009-09-06T22:36:51Z2009-09-06T22:42:45Z<p>Register an ActionListener for each button. In the body of that ActionListener's actionPerformed method, get the item to display and pass it to a method that will be responsible for setting the values to the text fields.</p>
<p>Something like:</p>
<pre><code>JButton button = new JButton("Next");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
DVDObject obj = getNextDVD();
populateFields(obj);
}
});
...
private DVDObject getNextDVD() {
// gets the next object to display
// you could call this method for each of the buttons,
// passing in an argument that determines which Object
// to return (first, last, next, previous, whatever)
}
private void populateFields(DVDObject dvd) {
// write out the values from the object passed in to the
// fields
}
</code></pre>
<p>I'm guessing you've got some kind of collection of objects that contain all the information about DVDs, I've taken a stab in the dark and called it "DVDObject" here.</p>
http://stackoverflow.com/questions/1376934/java-for-each-loop-sort-order/1376951#13769514Answer by rjohnston for Java For-Each Loop : Sort orderrjohnston2009-09-04T02:29:31Z2009-09-04T02:34:43Z<p>The foreach loop will use the iterator built into the Collection, so the order you get results in will depend whether or not the Collection maintains some kind of order to the elements. </p>
<p>So, if you're looping over an ArrayList, you'll get items in the order they were inserted (assuming you didn't go on to sort the ArrayList). If you're looping over a HashSet, all bets are off, since HashSets don't maintain any ordering.</p>
<p>If you need to guarantee an order to the elements in the Collection, define a Comparator that establishes that order and use Collections.sort(Collection<T>, Comparator<? super T>)</p>
http://stackoverflow.com/questions/137972/hudson-job-hangs-at-runtime-exec2Hudson job hangs at Runtime.execrjohnston2008-09-26T05:58:48Z2009-09-03T20:45:40Z
<p>I'm running Hudson as a windows service through Tomcat, with no slaves involved. The last build step in the job is a batch file that invokes some Java code. The code uses PostgreSQL's command line tool psql (via Runtime.exec()) to create a database on the local machine and eventually run some tests against it.</p>
<p>The job will progress to this point, then hang indefinitely without starting to create the database. If I run the batch file from the command line, it works perfectly. I don't think <a href="http://hudson.gotdns.com/wiki/display/HUDSON/Spawning+processes+from+build" rel="nofollow">http://hudson.gotdns.com/wiki/display/HUDSON/Spawning+processes+from+build</a> applies, since the process spawned doesn't even seem to begin executing, but I'm new to this so please let me know if I'm wrong.</p>
<p>Edit @<a href="#137989" rel="nofollow">anjanb</a>:
The batch file's only purpose is to invoke the Java code, and the only user input is being passed in as command line arguments, which I can see are going in directly via the build's console output.</p>
<p>Process Explorer is showing that psql is being started, but it's obviously not being executed, since the first command psql is given is to create a new database, but that's not happening.</p>
<p>Edit 2: I've gotten some tips from the Hudson users mailing list, I'll try them out on Monday and report back.</p>
<p>Edit 3: The Java code was already consuming the output streams, I used that article when developing the code. I can't figure out what's going on, so I'm redeveloping the code to use JDBC to create the database, instead of relying on psql and Runtime.exec()</p>
http://stackoverflow.com/questions/1359623/ant-svntask-retrieving-revision-message/1359773#13597731Answer by rjohnston for ant svntask retrieving revision messagerjohnston2009-08-31T22:55:00Z2009-08-31T23:01:26Z<p>I don't think there's a built in way to get the commit message, but you can pull it manually out of svn with a command like this:</p>
<pre><code>svnlook log -r X /path/to/repo
</code></pre>
<p>This will return the log message for the revision X for the repository at /path/to/repo. You could wrap this up in ant's exec task to preform it from ant...</p>
<p>+1 for Hudson - very simple to deploy and set up</p>
http://stackoverflow.com/questions/1299528/help-me-in-solving-this-postgresql-query/1299587#12995870Answer by rjohnston for Help me in solving this Postgresql queryrjohnston2009-08-19T12:24:30Z2009-08-19T12:24:30Z<p>To convert the input date to a varchar, try this:</p>
<pre><code>CREATE FUNCTION TimePart(fDate date)
RETURNS varchar AS
$$
BEGIN
return fDate::varchar;
END;
$$ LANGUAGE 'plpgsql';
</code></pre>
http://stackoverflow.com/questions/510341/force-subclasses-of-an-interface-to-implement-tostring-c1Force subclasses of an interface to implement ToString [C#]rjohnston2009-02-04T07:01:56Z2009-06-06T00:58:04Z
<p>Say I have an interface IFoo, and I want all subclasses of IFoo to override Object's ToString method. Is this possible? </p>
<p>Simply adding the method signature to IFoo as such doesn't work:</p>
<pre><code>interface IFoo
{
String ToString();
}
</code></pre>
<p>...since all the subclasses extend Object and provide an implementation that way, so the compiler doesn't complain about it. Any suggestions?</p>
<p>Edit: fixed title</p>
http://stackoverflow.com/questions/942481/refactoring-advice-for-big-switches-in-c/942531#9425314Answer by rjohnston for Refactoring advice for big switches in C#rjohnston2009-06-03T00:16:56Z2009-06-03T00:16:56Z<p>Sounds like a good place to use the Strategy Pattern: <a href="http://www.google.com/search?q=c%23+strategy+pattern" rel="nofollow">http://www.google.com/search?q=c%23+strategy+pattern</a></p>
http://stackoverflow.com/questions/683842/how-can-i-perform-an-and-on-an-unknown-number-of-booleans-in-postgresql4How can I perform an AND on an unknown number of booleans in postgresql?rjohnston2009-03-25T22:53:45Z2009-05-31T14:20:03Z
<p>I have a table with a foreign key and a boolean value (and a bunch of other columns that aren't relevant here), as such:</p>
<pre><code>CREATE TABLE myTable
(
someKey integer,
someBool boolean
);
insert into myTable values (1, 't'),(1, 't'),(2, 'f'),(2, 't');
</code></pre>
<p>Each someKey could have 0 or more entries. For any given someKey, I need to know if a) all the entries are true, or b) any of the entries are false (basically an AND).</p>
<p>I've come up with the following function:</p>
<pre><code>CREATE FUNCTION do_and(int4) RETURNS boolean AS
$func$
declare
rec record;
retVal boolean = 't'; -- necessary, or true is returned as null (it's weird)
begin
if not exists (select someKey from myTable where someKey = $1) then
return null; -- and because we had to initialise retVal, if no rows are found true would be returned
end if;
for rec in select someBool from myTable where someKey = $1 loop
retVal := rec.someBool AND retVal;
end loop;
return retVal;
end;
$func$ LANGUAGE 'plpgsql' VOLATILE;
</code></pre>
<p>... which gives the correct results:</p>
<pre><code>select do_and(1) => t
select do_and(2) => f
select do_and(3) => null
</code></pre>
<p>I'm wondering if there's a nicer way to do this. It doesn't look too bad in this simple scenario, but once you include all the supporting code it gets lengthier than I'd like. I had a look at casting the someBool column to an array and using the ALL construct, but I couldn't get it working... any ideas?</p>
http://stackoverflow.com/questions/125333/how-to-implement-simple-threading-in-java/125370#125370-1Answer by rjohnston for How to implement simple threading in Javarjohnston2008-09-24T04:05:55Z2009-03-27T04:55:01Z<p>If you want to roll your own:</p>
<pre><code>private static final int MAX_WORKERS = n;
private List<Worker> workers = new ArrayList<Worker>(MAX_WORKERS);
private boolean roomLeft() {
synchronized (workers) {
return (workers.size() < MAX_WORKERS);
}
}
private void addWorker() {
synchronized (workers) {
workers.add(new Worker(this));
}
}
public void removeWorker(Worker worker) {
synchronized (workers) {
workers.remove(worker);
}
}
public Example() {
while (true) {
if (roomLeft()) {
addWorker();
}
}
}
</code></pre>
<p>Where Worker is your class that extends Thread. Each worker will call this class's removeWorker method, passing itself in as a parameter, when it's finished doing it's thing.</p>
<p>With that said, the Executor framework looks a lot better.</p>
<p>Edit: Anyone care to explain why this is so bad, instead of just downmodding it?</p>
http://stackoverflow.com/questions/593689/sort-algorithm-to-use-for-this-specific-scenario0Sort algorithm to use for this specific scenariorjohnston2009-02-27T06:11:29Z2009-02-27T06:22:00Z
<p>I have two lists - let's call them <em>details</em> and <em>totals</em>. </p>
<p>The items in <em>details</em> have multiple elements for each key that the list is sorted on, as such:</p>
<p>KEY1<br />
KEY1<br />
KEY2<br />
KEY2<br />
KEY3<br />
KEY3<br />
KEY3<br />
etc</p>
<p>The items in <em>totals</em> will only have each key once, as such:</p>
<p>KEY1<br />
KEY2<br />
KEY3<br />
etc</p>
<p>Both lists are sorted by key already. The lists need to be combined so that the new list has the <em>details</em> elements followed by it's corresponding element from <em>totals</em>, as such:</p>
<p>KEY1 (this is from <em>details</em>)<br />
KEY1 (this is from <em>details</em>)<br />
KEY1 (this is from <em>totals</em>)
etc</p>
<p>Which sorting algorithm will result in the best performance in this scenario? </p>
<p>(in all honesty, I'm just going to change the code so that the row from <em>totals</em> is created-and-inserted as the <em>details</em> list is being built, this is more of an academic question)</p>
http://stackoverflow.com/questions/14293/are-there-any-unhappy-users-of-fogbugz/589258#5892581Answer by rjohnston for Are there any unhappy users of FogBugz?rjohnston2009-02-26T05:48:36Z2009-02-26T05:48:36Z<p>We've been using FogBugz for over a year now, and by and large I like it. My only real problem with it is that comments on cases all go in as plain text - you can't do lists, can't emphasise points, and code pasted in is impossible to read.</p>
<p>It just seems strange to me that such a fundamental feature is missing, especially since the exact same thing has already been developed for the wiki feature...</p>
http://stackoverflow.com/questions/463911/using-java-desktop-codebase-in-a-webapp0Using java (desktop) codebase in a webapprjohnston2009-01-21T02:18:55Z2009-01-21T05:28:50Z
<p>I have a rather large (80k loc) java desktop app that talks to a database. We're now looking at exposing some parts of the database via a web application, using the existing codebase and preferably not having to modify it.</p>
<p>I have good separation between the data access, business logic and presentation layers, but we haven't used enterprise java beans or anything like that (if that's important).</p>
<p>What's the best way forward? Which of the java web frameworks will be best suited to the problem? Learning curve isn't terribly important, since I haven't done any java development on the web...</p>
http://stackoverflow.com/questions/463746/is-it-possible-to-migrate-a-single-component-from-one-svn-repository-to-another-w/463865#4638652Answer by rjohnston for is it possible to migrate a single component from one svn repository to another while preserving history?rjohnston2009-01-21T01:47:01Z2009-01-21T02:27:45Z<p>Check out 'svnadmin dump', 'svnadmin load' and 'svndumpfilter'</p>
<p><a href="http://svnbook.red-bean.com/nightly/en/svn.reposadmin.maint.html#svn.reposadmin.maint.migrate" rel="nofollow">http://svnbook.red-bean.com/nightly/en/svn.reposadmin.maint.html#svn.reposadmin.maint.migrate</a></p>
<p>Dump the repository with the file you want to move, use svndumpfilter to filter out only the paths for that file, then load the filtered dump into the shared repository.</p>
http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199967#1999670Answer by rjohnston for Most Influential CS Class You've Takenrjohnston2008-10-14T03:53:26Z2008-10-14T03:53:26Z<p>The most influential class I took as part of my degree would have been Project Management. It taught me that it's one thing to have smart people hacking out 1000s of lines of quality code day after day, but it's something completely different to ship a working product that people can actually use, and that having the former doesn't guarantee the latter.</p>
http://stackoverflow.com/questions/157044/how-do-i-resolve-the-error-expression-must-evaluate-to-a-node-set-when-checking/157085#157085-1Answer by rjohnston for How do I resolve the error "Expression must evaluate to a node-set" when checking for the existence of a node?rjohnston2008-10-01T10:52:19Z2008-10-01T11:02:17Z<p>Try:</p>
<pre><code>Node node = xmlDocument.SelectSingleNode(String.Format("//ErrorTable/ProjectName = '{0}'", projectName));
if (node != null) {
// and so on
}
</code></pre>
<p>Edit: silly error</p>
http://stackoverflow.com/questions/156975/how-to-add-a-horizontal-gap-with-a-jlabel/157017#1570172Answer by rjohnston for How to add a horizontal gap with a JLabelrjohnston2008-10-01T10:29:12Z2008-10-01T10:29:12Z<p>If you're trying to push the label to one side of it's container, you can add a glue. Something like this:</p>
<pre><code>JPanel panel = new JPanel();
panel.setLayoutManager(new BoxLayout(panel, BoxLayout.LINE_AXIS);
panel.add(new JLabel("this is your label with it's image and text"));
panel.add(Box.createHorizontalGlue());
</code></pre>
<p>Though your question isn't very clear.</p>
http://stackoverflow.com/questions/935/string-literals-and-escape-characters-in-postgresql3String literals and escape characters in postgresqlrjohnston2008-08-04T01:00:24Z2008-09-27T16:04:29Z
<p>Attempting to insert an escape character into a table results in a warning and the string being truncated at the escape character. For example:</p>
<pre><code>create table EscapeTest (text varchar(50));<br><br>insert into EscapeTest (text) values ('This will be inserted \n This will not be');<br></code></pre>
<p>Produces the warning:</p>
<pre><code>WARNING: nonstandard use of escape in a string literal<br></code></pre>
<p>(Using PSQL 8.2)</p>
<p>Anyone know how to get around this?</p>
http://stackoverflow.com/questions/137243/code-run-by-hudson-cant-find-executable-on-the-command-line2Code run by Hudson can't find executable on the command linerjohnston2008-09-26T01:22:45Z2008-09-26T21:26:39Z
<p>I'm setting up my first job in Hudson, and I'm running into some problems. The job monitors two repositories, one containing our DB setup files, the other a bit of code that validates and tests the DB setup files.</p>
<p>Part of the code that runs will throw the validated setup files at PostgreSQL, using the psql command line tool, using Runtime.exec(). This code works perfectly on my machine, but when Hudson executes it (different machine) I get the following error:</p>
<pre>java.io.IOException: Cannot run program "psql": CreateProcess error=2, The system cannot find the file specified</pre>
<p>psql.exe is on the path, and I can execute it by typing the whole thing at the command line, from the same place Hudson is executing the code. The file that's meant to be passed into psql exists.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/124667/learning-how-to-use-subversion/124711#1247119Answer by rjohnston for Learning how to use Subversionrjohnston2008-09-24T00:23:10Z2008-09-24T00:23:10Z<p>The recommended directory structure for a subversion repo contains three folders: "branches", "tags" and "trunk". So, create these folders somewhere convenient, in a new folder.</p>
<p>Right click in the parent folder of these folders, go to TortoiseSVN and select Import. Enter the url to the repository you created here (ie_ https://JUNK:8443/svn/Test/ is one I just made, on my local machine). Hit the ok button and the folders will be imported.</p>
<p>Now browse to where you want the repo to live on your local machine (I've gone to C:\workspace\test). Right-click and go to SVN Checkout.</p>
<p>Now, you want to check out from the trunk of your repo, so change the repository URL to reflect this (https://JUNK:8443/svn/Test/trunk/). Hit the ok button.</p>
<p>Create a new file in this directory. Right click on it and go to TortoiseSVN, then Add. Hit ok, and the file is now marked as a new file for the repo. Right click in the parent folder of the file and you should see SVN Update and SVN Commit. SVN Update will refresh the local files with files from the repository. SVN Commit will send local files that have been changed back into the repository.</p>
<p>Have fun :)</p>
http://stackoverflow.com/questions/118633/whats-so-wrong-about-using-gc-collect/118663#1186630Answer by rjohnston for What's so wrong about using GC.Collect()?rjohnston2008-09-23T01:39:49Z2008-09-23T01:39:49Z<p>There are situations where it's useful, but in general it should be avoided. You could compare it to GOTO, or riding a moped: you do it when you need to, but you don't tell your friends about it.</p>
http://stackoverflow.com/questions/1625/xml-editing-viewing-software/3243#32430Answer by rjohnston for XML Editing/Viewing Softwarerjohnston2008-08-06T10:04:35Z2008-08-06T10:15:05Z<p>+1 for XML Spy, I've used both the stand alone product and the visual studio plugin, and I've been impressed.</p>
<p>In terms of FOSS, I use <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a></p>http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/2972#29724Answer by rjohnston for How do I programmatically create a PDF in my .NET application?rjohnston2008-08-05T23:58:28Z2008-08-05T23:58:28Z<p>Just for completeness - if you represent your data in xml, you can apply an xslt to it and run it through nFOP, and generate a PDF that way.</p>http://stackoverflow.com/questions/2158/creating-a-custom-button-in-java/2210#22101Answer by rjohnston for Creating a custom button in Javarjohnston2008-08-05T12:47:17Z2008-08-05T12:51:38Z<p>You could always try the Synth look & feel. You provide an xml file that acts as a sort of stylesheet, along with any images you want to use. The code might look like this:</p>
<pre><code>try {<br> SynthLookAndFeel synth = new SynthLookAndFeel();<br> Class aClass = MainFrame.class;<br> InputStream stream = aClass.getResourceAsStream("\\default.xml");<br><br> if (stream == null) {<br> System.err.println("Missing configuration file");<br> System.exit(-1); <br> }<br><br> synth.load(stream, aClass);<br><br> UIManager.setLookAndFeel(synth);<br>} catch (ParseException pe) {<br> System.err.println("Bad configuration file");<br> pe.printStackTrace();<br> System.exit(-2);<br>} catch (UnsupportedLookAndFeelException ulfe) {<br> System.err.println("Old JRE in use. Get a new one");<br> System.exit(-3);<br>}<br></code></pre>
<p>From there, go on and add your JButton like you normally would. The only change is that you use the setName(string) method to identify what the button should map to in the xml file.</p>
<p>The xml file might look like this:</p>
<pre><code><synth><br> <style id="button"><br> <font name="DIALOG" size="12" style="BOLD"/><br> <state value="MOUSE_OVER"><br> <imagePainter method="buttonBackground" path="dirt.png" sourceInsets="2 2 2 2"/><br> <insets top="2" botton="2" right="2" left="2"/><br> </state><br> <state value="ENABLED"><br> <imagePainter method="buttonBackground" path="dirt.png" sourceInsets="2 2 2 2"/><br> <insets top="2" botton="2" right="2" left="2"/><br> </state><br> </style><br> <bind style="button" type="name" key="dirt"/><br></synth><br></code></pre>
<p>The bind element there specifies what to map to (in this example, it will apply that styling to any buttons whose name property has been set to "dirt").</p>
<p>And a couple of useful links:</p>
<p><a href="http://javadesktop.org/articles/synth/" rel="nofollow">http://javadesktop.org/articles/synth/</a></p>
<p><a href="http://java.sun.com/docs/books/tutorial/uiswing/lookandfeel/synth.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/uiswing/lookandfeel/synth.html</a></p>http://stackoverflow.com/questions/935/string-literals-and-escape-characters-in-postgresql/938#9382Answer by rjohnston for String literals and escape characters in postgresqlrjohnston2008-08-04T01:07:03Z2008-08-04T01:07:03Z<p>Partially. The text is inserted, but the warning is still generated.</p>
<p>I found a discussion that indicated the text needed to be preceded with 'E', as such:</p>
<pre><code>insert into EscapeTest (text) values (E'This will be inserted \n This will not be');<br></code></pre>
<p>This suppressed the warning, but still didn't insert the text. When I added the additional slash as Michael suggested, it worked.</p>
<p>As such:</p>
<pre><code>insert into EscapeTest (text) values (E'This will be inserted \\n This will not be');<br></code></pre>http://stackoverflow.com/questions/1529059/tomcat-6-the-requested-resource-is-not-availableComment by rjohnston on Tomcat 6 - The requested resource ... is not available.rjohnston2009-10-07T01:53:57Z2009-10-07T01:53:57Z<a href="http://forums.sun.com/thread.jspa?threadID=5144147" rel="nofollow">forums.sun.com/thread.jspa?threadID=5144147/…</a>http://stackoverflow.com/questions/1479061/simple-jquery-works-in-html-not-asp-netComment by rjohnston on Simple jQuery works in HTML, not ASP.NETrjohnston2009-10-07T01:41:53Z2009-10-07T01:41:53ZI removed the "stripes" tag, since that refers to the Stripes frameworkhttp://stackoverflow.com/questions/1414525/how-should-we-tackle-a-big-change-in-our-application/1414528#1414528Comment by rjohnston on How should we tackle a big change in our application ?rjohnston2009-09-15T01:47:56Z2009-09-15T01:47:56Z@AMissico - actually, I was trying to say they should move "the car" to a different SCMhttp://stackoverflow.com/questions/1414525/how-should-we-tackle-a-big-change-in-our-application/1414528#1414528Comment by rjohnston on How should we tackle a big change in our application ?rjohnston2009-09-12T08:17:45Z2009-09-12T08:17:45Z@AMissico - I have a mechanic working on my engine, but they sometimes get in the way of the person changing the tire. The answer is for them to move the car to somewhere they can both work on it at the same time and not get in each other's way.http://stackoverflow.com/questions/683842/how-can-i-perform-an-and-on-an-unknown-number-of-booleans-in-postgresql/684028#684028Comment by rjohnston on How can I perform an AND on an unknown number of booleans in postgresql?rjohnston2009-03-26T03:42:41Z2009-03-26T03:42:41ZChanged my mind - I like this solution better. Cleaned up version at <a href="http://paste.pocoo.org/show/109656/" rel="nofollow">paste.pocoo.org/show/109656</a> http://stackoverflow.com/questions/683842/how-can-i-perform-an-and-on-an-unknown-number-of-booleans-in-postgresql/683903#683903Comment by rjohnston on How can I perform an AND on an unknown number of booleans in postgresql?rjohnston2009-03-25T23:30:38Z2009-03-25T23:30:38ZThanks... removing someKey from the select list gives the correct resulthttp://stackoverflow.com/questions/683842/how-can-i-perform-an-and-on-an-unknown-number-of-booleans-in-postgresql/683892#683892Comment by rjohnston on How can I perform an AND on an unknown number of booleans in postgresql?rjohnston2009-03-25T23:19:37Z2009-03-25T23:19:37ZIt's a start, but this doesn't deal with the case where the id doesn't exist (true is returned, since 0 = 0)http://stackoverflow.com/questions/593689/sort-algorithm-to-use-for-this-specific-scenario/593704#593704Comment by rjohnston on Sort algorithm to use for this specific scenariorjohnston2009-02-27T14:46:17Z2009-02-27T14:46:17ZI guess when I said "sorting" I meant "putting elements in order". The existing code does a sort because the lists aren't in order, I've just updated the DB to return them sorted correctly. http://stackoverflow.com/questions/23886/sql-pronunciation/350563#350563Comment by rjohnston on SQL Pronunciationrjohnston2009-02-16T12:54:07Z2009-02-16T12:54:07ZThat's what I thought as wellhttp://stackoverflow.com/questions/510341/force-subclasses-of-an-interface-to-implement-tostring-c/510358#510358Comment by rjohnston on Force subclasses of an interface to implement ToString [C#]rjohnston2009-02-04T10:14:30Z2009-02-04T10:14:30ZI was hoping stick with interfaces since I've already gotten them written, guess I'll have to bite the bullet and switch abstract classes. Thanks.http://stackoverflow.com/questions/510341/force-subclasses-of-an-interface-to-implement-tostring-c/510359#510359Comment by rjohnston on Force subclasses of an interface to implement ToString [C#]rjohnston2009-02-04T10:13:33Z2009-02-04T10:13:33ZQuestion was "can I do this with an interface?", not "how do I do this?", but thanks anyway.http://stackoverflow.com/questions/463911/using-java-desktop-codebase-in-a-webapp/463939#463939Comment by rjohnston on Using java (desktop) codebase in a webapprjohnston2009-01-21T05:11:02Z2009-01-21T05:11:02ZThanks for the pointer to Stripes - looks like the most straight-forward option at the moment. As I said, the code is very well separated, I expect to be able to reuse all of the access code, and the majority of the logic code (all of it with a little refactoring)...http://stackoverflow.com/questions/935/string-literals-and-escape-characters-in-postgresql/104780#104780Comment by rjohnston on String literals and escape characters in postgresqlrjohnston2009-01-18T23:59:27Z2009-01-18T23:59:27ZInteresting, looks like the problem was in the JDBC driver then, because the text coming out of the database was very definitely being truncated... http://stackoverflow.com/questions/399204/xslt-distinct-elements-and-grouping/399262#399262Comment by rjohnston on XSLT distinct elements and groupingrjohnston2008-12-30T02:01:58Z2008-12-30T02:01:58ZPerfect, thanks! And cheers for the muenchean tip...http://stackoverflow.com/questions/137972/hudson-job-hangs-at-runtime-exec/142271#142271Comment by rjohnston on Hudson job hangs at Runtime.execrjohnston2008-09-27T01:22:44Z2008-09-27T01:22:44ZThat's a great resource, I used it when writing the code itself. It was hanging, but it at least started creating the DB, unlike now.