User danb - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T14:16:19Zhttp://stackoverflow.com/feeds/user/2031http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/796347/map-a-list-of-strings-with-jpa-hibernate-annotations1Map a list of strings with JPA/Hibernate annotationsdanb2009-04-28T05:33:03Z2009-11-16T19:06:48Z
<p>I want to do something like this:</p>
<pre><code> @Entity public class Bar {
@Id @GeneratedValue long id;
List<String> Foos
}
</code></pre>
<p>and have the Foos persist in a table like this:</p>
<pre><code>foo_bars (
bar_id int,
foo varchar(64)
);
</code></pre>
<p>UPDATE:</p>
<p>I know how to map other entities, but it's overkill in many cases. It looks like what I'm suggesting isn't possible without creating yet another entity or ending up with everything in some blob column.</p>
http://stackoverflow.com/questions/1579235/bulk-insert-into-sql-server-a-csv-with-line-breaks-in-fields0Bulk insert into SQL Server a CSV with line breaks in fieldsdanb2009-10-16T17:03:03Z2009-10-16T17:39:28Z
<p>I have a csv that looks like this:</p>
<pre><code>"blah","blah, blah, blah
ect, ect","column 3"
"foo","foo, bar, baz
more stuff on another line", "another column 3"
</code></pre>
<p>Is it possible to import this directly into SQL server?</p>
http://stackoverflow.com/questions/1501257/can-i-just-hand-groovys-markupbuilder-a-node-list/1501276#15012760Answer by danb for Can I just hand groovy's markupbuilder a node list?danb2009-09-30T23:59:45Z2009-09-30T23:59:45Z<p>I haven't actually tried this... but if you serialize the nodelist to a string you might be able to do this:</p>
<pre><code>builder.yieldUnescaped(xmlString)
</code></pre>
<p>still kinda messy though... </p>
http://stackoverflow.com/questions/1498703/how-to-add-keyboard-scroll-enter-to-autosuggest-script/1498730#14987301Answer by danb for how to: add keyboard scroll / enter to autosuggest script?danb2009-09-30T15:08:07Z2009-09-30T15:40:43Z<p>I have been using jquery and one of its myriad of auto-complete plugins for this for a while... it's pretty much a no brainer to integrate it.. and you get a bunch of fairly complex niceties for free.</p>
<p>Here's a demo of one I've used a bunch:
<a href="http://view.jquery.com/trunk/plugins/autocomplete/demo/" rel="nofollow">http://view.jquery.com/trunk/plugins/autocomplete/demo/</a></p>
<p>EDIT:</p>
<p>ultimately if you want to roll your own, you'll need to listen for keyboard events and keep track of your position in the list... then on enter key, push the current selected value into the text field. here is a good overview of keyboard event stuff: </p>
<p><a href="http://unixpapa.com/js/key.html" rel="nofollow">http://unixpapa.com/js/key.html</a></p>
<p><a href="http://www.javascriptkit.com/javatutors/javascriptkey.shtml" rel="nofollow">http://www.javascriptkit.com/javatutors/javascriptkey.shtml</a></p>
<p>I would recommend using some library to abstract away all the browser nuttiness.. jquery is an awesome library with thousands of hours of testing and robust cross browser support. It normalizes the browser event model for you and really makes your code easier to read and maintain.</p>
http://stackoverflow.com/questions/1498522/does-the-java-api-have-a-data-structure-to-represent-hierarchy/1498575#14985751Answer by danb for Does the Java API have a data structure to represent hierarchydanb2009-09-30T14:45:04Z2009-09-30T15:28:41Z<p>You could use a simplified DOM abstraction with less boilerplate code like JDOM... or how about just some nested Maps for quick and dirty?</p>
<pre><code>[result:true, childResults:[result:true, childResults:[], result:false, childResults:[]]]
</code></pre>
<p>toss some recursion in there to put the thing together... and bob's your uncle.</p>
<p>EDIT:</p>
<p>if you need ordering in the child results, you'll want to toss a list in there... this is probably all a bit messy in Java, but I've been in Groovy land so long that it jumped right out at me.. the syntactic sugar for lists and maps makes it easy (too easy?) to bust out stuff like this... if you have control over the project, you might want to look at a little Groovy :)</p>
http://stackoverflow.com/questions/1498615/is-there-a-simple-way-to-alphabetize-a-string-enumeration-in-java/1498653#14986532Answer by danb for Is there a simple way to alphabetize a String Enumeration in Java?danb2009-09-30T14:57:15Z2009-09-30T15:21:55Z<p>If you have a sorted list you can use </p>
<p>Collections.enumeration(myList)</p>
<p>to get it back to an enumeration... if I'm following you correctly..</p>
<p>EDIT:</p>
<p>You can do this... </p>
<pre><code>List l = new ArrayList(ht.keySet());
Collections.sort(l)
</code></pre>
http://stackoverflow.com/questions/1498695/alternatives-to-backdooring-java-access-when-unit-testing/1498716#14987160Answer by danb for Alternatives to backdooring java access when unit testing.danb2009-09-30T15:05:29Z2009-09-30T15:05:29Z<p>This is probably a stretch if you're not already using it... but Groovy is really great for violating access restrictions for unit testing... you can just reach in and call the methods as though they were public without additional reflection.</p>
http://stackoverflow.com/questions/1498569/how-is-javascript-evaluated-at-the-target-page-in-an-ajax-situation/1498599#14985991Answer by danb for How is javascript evaluated at the target page in an AJAX situation?danb2009-09-30T14:48:40Z2009-09-30T14:48:40Z<p>The JS on the target.asp page is not evaluated in the client unless you eval() it or push it into the DOM or something.</p>
http://stackoverflow.com/questions/1464866/is-there-a-way-of-passing-all-the-defined-variables-to-a-groovyshell/1498425#14984251Answer by danb for Is there a way of passing all the defined variables to a GroovyShell?danb2009-09-30T14:21:26Z2009-09-30T14:40:08Z<p>I haven't tested this... but it may work:</p>
<pre><code>new GroovyShell(this.binding).evaluate(line)
</code></pre>
<p>or this:</p>
<pre><code>new GroovyShell(new Binding(this.binding.variables)).evaluate(line)
</code></pre>
http://stackoverflow.com/questions/1493650/using-mysql-load-data-infile-with-nonprintable-character-delimiters0Using MySQL LOAD DATA INFILE with nonprintable character delimitersdanb2009-09-29T16:33:27Z2009-09-30T13:11:08Z
<p>I have some vendor data that has the SOH (ASCII character 1) as the field delimiter and STX (ASCII character 2) as the record delimiter. Is it possible to load this data with LOAD DATA INFILE without pre-processing the file and replacing those characters with something more common?</p>
http://stackoverflow.com/questions/1493650/using-mysql-load-data-infile-with-nonprintable-character-delimiters/1493892#14938920Answer by danb for Using MySQL LOAD DATA INFILE with nonprintable character delimitersdanb2009-09-29T17:20:41Z2009-09-29T17:20:41Z<p>I got it.</p>
<pre><code>LOAD DATA LOCAL INFILE 'myfile.txt' INTO TABLE my_table
CHARACTER SET UTF8
FIELDS TERMINATED BY X'01'
LINES TERMINATED BY X'02'
(col1, col2, col3);
</code></pre>
http://stackoverflow.com/questions/1493831/replacing-specific-non-printable-characters-in-huge-files-from-linux-command-line0Replacing specific non-printable characters in huge files from linux command linedanb2009-09-29T17:08:56Z2009-09-29T17:20:37Z
<p>I need to replace the ascii characters SOH and STX (start of header and start of text, ascii characters 1 and 2, respectively) in some really huge text files as quickly as possible... Is sed the way to go? What does that command look like?</p>
http://stackoverflow.com/questions/1440967/how-do-i-make-sure-my-bash-script-isnt-already-running4How do I make sure my bash script isn't already running?danb2009-09-17T19:49:24Z2009-09-28T15:41:12Z
<p>I have a bash script I want to run every 5 minutes from cron... but there's a chance the previous run of the script isn't done yet... in this case, i want the new run to just exit. I don't want to rely on just a lock file in /tmp.. I want to make sure sure the process is actually running before i honor the lock file (or whatever)... </p>
<p>Here is what I have stolen from the internet so far... how do i smarten it up a bit? or is there a completely different way that's better?</p>
<pre><code>if [ -f /tmp/mylockFile ] ; then
echo 'Script is still running'
else
echo 1 > /tmp/mylockFile
/* Do some stuff */
rm -f /tmp/mylockFile
fi
</code></pre>
http://stackoverflow.com/questions/1455932/can-someone-show-me-how-to-populate-the-following-mysql-table/1455953#14559530Answer by danb for Can someone show me how to populate the following MySQL table?danb2009-09-21T18:10:46Z2009-09-21T18:10:46Z<p>Something like this?</p>
<pre><code>INSERT INTO tags (id, tag, `count`) VALUES (1, 'foo', 1), (2, 'bar', 1);
</code></pre>
http://stackoverflow.com/questions/1455917/problem-with-jsp-tags-java-code-as-value/1455942#14559426Answer by danb for Problem with JSP tags - Java code as valuedanb2009-09-21T18:09:04Z2009-09-21T18:09:04Z<p>Sounds like you need to change your tld so that attribute can accept expressions:</p>
<pre><code> <attribute>
...
<rtexprvalue>true</rtexprvalue>
...
</attribute>
</code></pre>
http://stackoverflow.com/questions/19173/are-there-reasons-not-to-use-jsonp-for-ajax-requests4Are there reasons not to use JSONP for AJA~X requests?danb2008-08-21T00:56:45Z2009-09-21T17:50:45Z
<p>If you're building an AJA~Xy app, are there any downsides to using JSONP requests/responses even if you're not planning on any cross-domain requests? The only thing I can think of is that there are a couple extra bytes for the callback wrapper... </p>
<p>Edit:</p>
<p>I found <a href="http://remysharp.com/2007/10/08/what-is-jsonp/" rel="nofollow">this</a> which also suggests security and error handling as potential problems... </p>
<blockquote>
<p>There's no error handling. The script
injection either works, or it doesn't.
If there's an error from the
injection, it'll hit the page, and
short of a window wide error handler
(bad, bad, very bad), you need to be
sure the return value is valid on the
server side.</p>
</blockquote>
<p>I don't think error handling is much of a problem... most of us would use a library to generate the JSON... the well-formedness of my response isn't a concern for this question.</p>
<p>and security:</p>
<blockquote>
<p>Security. There's documents out on the
web that can help, but as a cursory
check, I would check the referrer in
the server side script.</p>
</blockquote>
<p>it seems like this is a potential problem with any type of response... certainly there's nothing unique to JSONP in the security arena...?</p>
http://stackoverflow.com/questions/19173/are-there-reasons-not-to-use-jsonp-for-ajax-requests/1455844#14558440Answer by danb for Are there reasons not to use JSONP for AJA~X requests?danb2009-09-21T17:50:45Z2009-09-21T17:50:45Z<p>Here is another bit you may want to consider with JSONP.. possible memory leaks.. </p>
<p><a href="http://neil.fraser.name/news/2009/07/27/" rel="nofollow">http://neil.fraser.name/news/2009/07/27/</a></p>
http://stackoverflow.com/questions/1381355/how-do-i-enumerate-the-groovy-classes-in-a-specific-package1How do I enumerate the groovy classes in a specific package?danb2009-09-04T20:19:25Z2009-09-21T12:45:11Z
<p>If I have a package (foo.bar), is there some groovy sugar that makes it easy for me to enumerate all the classes in said package?</p>
http://stackoverflow.com/questions/990666/mozilla-jetpack-why-is-the-title-and-favicon-of-the-window-tab-not-updating/1089279#10892790Answer by danb for Mozilla Jetpack: Why is the title and favicon of the window/tab not updating?danb2009-07-06T21:22:36Z2009-07-06T21:22:36Z<p>if you back down to firebug 1.4.0b4 it will fix that console problem you're having.</p>
<p><a href="http://groups.google.com/group/mozilla-labs-jetpack/browse_thread/thread/c0cba73c67f19530#" rel="nofollow">http://groups.google.com/group/mozilla-labs-jetpack/browse_thread/thread/c0cba73c67f19530#</a></p>
http://stackoverflow.com/questions/198936/best-practices-for-grails-index-page3Best practices for grails index pagedanb2008-10-13T20:34:12Z2009-07-05T23:00:54Z
<p>What is the right way to populate the model for the index page in a grails app? There is no IndexController by default, is there some other mechanism for getting lists of this and that into the model?</p>
http://stackoverflow.com/questions/943873/connect-to-url-and-dump-webpage-in-groovy/953697#9536972Answer by danb for Connect to URL and dump webpage in Groovydanb2009-06-05T00:00:33Z2009-06-05T00:00:33Z<p>here is a variation</p>
<pre><code>println 'http://www.google.com'.toURL().text
</code></pre>
http://stackoverflow.com/questions/930227/how-do-i-completely-bootstrap-a-grails-environment0How do I completely bootstrap a grails environment? danb2009-05-30T18:03:30Z2009-06-03T15:41:02Z
<p>I have the included grails script that I found in some random place on the internet and it works pretty well for firing up scripts in a bootstrapped grails env. The only thing it doesn't seem to do is kick off my <code>conf/*Bootstrap.groovy</code> scripts like when I do run-app.</p>
<p>Is there another function like <code>loadApp()</code> and <code>configureApp()</code> that will do that for me? </p>
<pre><code>import org.codehaus.groovy.grails.support.PersistenceContextInterceptor
Ant.property(environment: "env")
grailsHome = Ant.antProject.properties."env.GRAILS_HOME"
includeTargets << new File("${grailsHome}/scripts/Bootstrap.groovy")
target('default': "Runs scripts in the test/local directory") {
if (!args) { throw new RuntimeException("[fail] This script requires an argument - the script to run.") }
depends(configureProxy, packageApp, classpath)
classLoader = new URLClassLoader([classesDir.toURI().toURL()] as URL[], rootLoader)
Thread.currentThread().setContextClassLoader(classLoader)
loadApp()
configureApp()
def interceptor = null
def beanNames = appCtx.getBeanNamesForType(PersistenceContextInterceptor)
if (beanNames && beanNames.size() == 1) {
interceptor = appCtx.getBean(beanNames[0])
}
try {
interceptor?.init()
new GroovyScriptEngine(Ant.antProject.properties."base.dir", classLoader).run("scripts/${args}.groovy", new Binding(['appCtx':appCtx]))
interceptor?.flush()
} catch (Exception e) {
e.printStackTrace()
interceptor?.clear()
} finally {
interceptor?.destroy()
}
}
</code></pre>
http://stackoverflow.com/questions/909885/using-ghelpballon-tag-in-templates/930253#9302530Answer by danb for Using <g:helpBallon> - Tag in Templatesdanb2009-05-30T18:13:14Z2009-05-30T18:13:14Z<p>You need <code><g:helpBalloons/></code> in your layout's header.</p>
<p>Here are some good getting started docs:</p>
<p><a href="http://www.grails.org/plugin/help-balloons" rel="nofollow">http://www.grails.org/plugin/help-balloons</a></p>
http://stackoverflow.com/questions/903214/many-to-many-not-persisting-in-gorm-grails-app1many-to-many not persisting in gorm/grails appdanb2009-05-24T06:23:09Z2009-05-24T22:52:22Z
<p>I have roughly the following in my grails 1.1 app</p>
<pre><code>class AppCategory {
static belongsTo = App
static hasMany = [ apps: App ]
String name
}
class App {
static hasMany = [ categories: AppCategory]
String name
}
App app = new App()
AppCategory appCat = AppCategory.findByName('blah')
app.addToCategories(appCat)
app.save()
</code></pre>
<p>The correct tables (app, app_category and app_categories) are created and the columns all seem fine, but I don't end up with any records in the association table and no errors. The app_category table and app table are correctly populated.</p>
<p>Do I need to manually manage a domain object for the association table? Or better yet, am I just missing something totally obvious?</p>
http://stackoverflow.com/questions/796316/update-duplicate-varchars-to-be-unique-in-sql-database/796375#7963750Answer by danb for Update duplicate varchars to be unique in SQL databasedanb2009-04-28T05:46:59Z2009-04-28T05:46:59Z<p>You could add another column to it... like</p>
<pre><code>update mytable set mycolumn = concat(mycolumn, id)
where id in (<select duplicate records>);
</code></pre>
<p>replace id with whatever column makes mycolumn unique</p>
http://stackoverflow.com/questions/761922/can-you-render-a-php-file-into-a-variable1can you render a php file into a variable?danb2009-04-17T19:50:24Z2009-04-20T06:36:59Z
<p>If I have a hello.php file like this:</p>
<pre><code>Hello, <?php echo $foo; ?>!
</code></pre>
<p>I would like to do something like this in some php code:</p>
<pre><code>$text = renderPhpToString('hello.php', array('foo'=>'World'));
</code></pre>
<p>and end up with</p>
<pre><code>$text == 'Hello, World!'
</code></pre>
<p>Is this possible with standard PHP 5? Obviously I want more complex templates with loops and so forth.. </p>
http://stackoverflow.com/questions/230644/how-do-i-connect-my-tomcat-app-to-apache-2-so-the-paths-arent-lame0How do I connect my tomcat app to apache 2 so the paths aren't lame?danb2008-10-23T17:29:24Z2009-04-01T22:09:44Z
<p>I've got a tomcat instance with several apps running on it... I want the root of my new domain to go to one of these apps (context path of blah).. so I have the following set up:</p>
<pre><code><Location />
ProxyPass ajp://localhost:8025/blah
ProxyPassReverse ajp://localhost:8025/blah
</Location>
</code></pre>
<p>it kinda works... going to mydomain.com/index.jsp works except the app still thinks it needs to add the /blah/ to everything like css and js.. is there something I can do without deploying the app to ROOT or changing the tomcat server config? I'd like to keep all this kind of thing on the apache side, if it's possible.</p>
<p>I'm thinking I may not be understanding the proxypassreverse directive.. </p>
http://stackoverflow.com/questions/603578/how-do-you-make-your-models-database-portable-in-cakephp0How do you make your model's database portable in cakephp?danb2009-03-02T19:14:30Z2009-03-04T01:05:20Z
<p>I'm not very familiar with cake.. So here's my questions.. we're developing an app on mysql, but it may eventually need to deploy to mssql or oracle. How do we make sure that we won't have strange problems with our primary keys? In mysql they are AUTO INCREMENT columns but IIRC in oracle you need to use sequences... is there a way to make this a transparent change? Am I over thinking it?</p>
<p>Does anyone have experience with switching database vendors on a cakephp app? any pointers or things to keep an eye out for?</p>
http://stackoverflow.com/questions/603578/how-do-you-make-your-models-database-portable-in-cakephp/607384#6073840Answer by danb for How do you make your model's database portable in cakephp?danb2009-03-03T17:41:33Z2009-03-03T17:41:33Z<p>You need to be using "cake schema" to manage your DB.. This will handle all the DB specific stuff when you create your database.</p>
<p><a href="http://book.cakephp.org/view/735/Generating-and-using-Schema-files" rel="nofollow">http://book.cakephp.org/view/735/Generating-and-using-Schema-files</a></p>
http://stackoverflow.com/questions/573307/how-do-i-replace-the-cakephp-password-hashing-algorithm1How do i replace the cakephp password hashing algorithm?danb2009-02-21T16:20:22Z2009-02-22T21:14:16Z
<p>I have an existing database I'm trying to put a cake app on top of. The old app used crypt() in Perl to hash the passwords, I need to do the same in the PHP app.</p>
<p>Where is the correct place to make that change in a standard cakephp app? And what would such a change look like? </p>
http://stackoverflow.com/questions/796347/map-a-list-of-strings-with-jpa-hibernate-annotations/1744180#1744180Comment by danb on Map a list of strings with JPA/Hibernate annotationsdanb2009-11-18T15:50:59Z2009-11-18T15:50:59Zdifficult to query effectively like that...http://stackoverflow.com/questions/1579235/bulk-insert-into-sql-server-a-csv-with-line-breaks-in-fields/1579309#1579309Comment by danb on Bulk insert into SQL Server a CSV with line breaks in fieldsdanb2009-10-16T17:28:57Z2009-10-16T17:28:57Zwon't that cause problems if it doesn't see the last " as the text enclosure?http://stackoverflow.com/questions/1500682/jquery-what-is-the-ui-in-the-following-exampleComment by danb on jQuery what is the 'ui' in the following example?danb2009-09-30T21:31:30Z2009-09-30T21:31:30Zis ui.value the value of the slider's starting position and the slider('value') its current value?http://stackoverflow.com/questions/1498703/how-to-add-keyboard-scroll-enter-to-autosuggest-script/1498730#1498730Comment by danb on how to: add keyboard scroll / enter to autosuggest script?danb2009-09-30T15:37:04Z2009-09-30T15:37:04ZI'd really recommend using a library like jquery or prototype as your foundation as you will have to worry about significantly less cross browser issues. and write much less boilerplate http://stackoverflow.com/questions/1498703/how-to-add-keyboard-scroll-enter-to-autosuggest-script/1498730#1498730Comment by danb on how to: add keyboard scroll / enter to autosuggest script?danb2009-09-30T15:35:56Z2009-09-30T15:35:56Zwell... ultimately if you want to roll your own, you'll need to listen for keyboard events and keep track of your position in the list... then on enter key, push the current selected value into the text field. here is a good overview of keyboard event stuff <a href="http://unixpapa.com/js/key.html" rel="nofollow">unixpapa.com/js/key.html</a>http://stackoverflow.com/questions/1498703/how-to-add-keyboard-scroll-enter-to-autosuggest-script/1498730#1498730Comment by danb on how to: add keyboard scroll / enter to autosuggest script?danb2009-09-30T15:31:27Z2009-09-30T15:31:27ZI guess I'm still not understanding your problem... you just want to be able to move up and down the auto-complete list with the arrow keys and then pick the highlighted option with enter? or something else... as the plugin I pointed you at handles that use case.http://stackoverflow.com/questions/1498615/is-there-a-simple-way-to-alphabetize-a-string-enumeration-in-java/1498653#1498653Comment by danb on Is there a simple way to alphabetize a String Enumeration in Java?danb2009-09-30T15:24:19Z2009-09-30T15:24:19ZYou just missed the keySet() method... that'll give you something easier to work with... quick demo in my edited answerhttp://stackoverflow.com/questions/1498703/how-to-add-keyboard-scroll-enter-to-autosuggest-script/1498730#1498730Comment by danb on how to: add keyboard scroll / enter to autosuggest script?danb2009-09-30T15:19:04Z2009-09-30T15:19:04ZI hear you on the rolling your own thing.. but this is just such a solved problem... kinda boring :)http://stackoverflow.com/questions/1498703/how-to-add-keyboard-scroll-enter-to-autosuggest-script/1498730#1498730Comment by danb on how to: add keyboard scroll / enter to autosuggest script?danb2009-09-30T15:18:18Z2009-09-30T15:18:18Zthat plugin allows keyboard navigation of the autocomplete list... or am i misunderstanding? type b in the first box in the demo and use the down arrow and enter... not what you mean?http://stackoverflow.com/questions/1498726/jquery-ui-dialogComment by danb on jQuery UI Dialogdanb2009-09-30T15:11:41Z2009-09-30T15:11:41Zinit it outside the click handler... http://stackoverflow.com/questions/1498726/jquery-ui-dialogComment by danb on jQuery UI Dialogdanb2009-09-30T15:10:56Z2009-09-30T15:10:56ZI'm not entirely sure.. but do you need to init the dialog with $('.btn_readbio').dialog(); before .dialog('open') will work? haven't played with it myself... http://stackoverflow.com/questions/1498655/mysql-query-helpComment by danb on MySQL Query help danb2009-09-30T15:01:40Z2009-09-30T15:01:40Zwhat are you getting? those first 2 queries look fine at first glance to me... never tried that alt query style before... but it looks funny to me :)http://stackoverflow.com/questions/1498615/is-there-a-simple-way-to-alphabetize-a-string-enumeration-in-javaComment by danb on Is there a simple way to alphabetize a String Enumeration in Java?danb2009-09-30T14:58:16Z2009-09-30T14:58:16Zmaybe post some pseudo code or something for clarity... http://stackoverflow.com/questions/1493650/using-mysql-load-data-infile-with-nonprintable-character-delimiters/1493694#1493694Comment by danb on Using MySQL LOAD DATA INFILE with nonprintable character delimitersdanb2009-09-29T17:05:23Z2009-09-29T17:05:23ZI was excited for a sec, but it didn't work.. LOAD DATA wants a string literal... I guess I need to pre-process.. thankshttp://stackoverflow.com/questions/1493650/using-mysql-load-data-infile-with-nonprintable-character-delimitersComment by danb on Using MySQL LOAD DATA INFILE with nonprintable character delimitersdanb2009-09-29T16:52:36Z2009-09-29T16:52:36Zhah.. tell me about it... sometimes I hate vendors :)