User Brad Barker - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T22:43:52Z http://stackoverflow.com/feeds/user/12081 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/757063/why-would-you-not-want-to-use-cloud-computing/1229995#1229995 0 Answer by Brad Barker for Why would you not want to use Cloud Computing Brad Barker 2009-08-04T21:20:35Z 2009-08-04T21:20:35Z <p>Besides what has already been said here, we have to consider uniformity across the business. Are all of you applications going to be hosted in the cloud, or only most? Is most enough to pull the trigger on using the cloud when you still have to have personnel to handle a few special servers?</p> <p>In particular, there might be special hardware that you need to communicate with such modems to accept incoming data, or voice cards that make automated phone calls. I don't know how such things could be handled in a cloud environment.</p> http://stackoverflow.com/questions/1120757/beyond-simple-coding-where-to-go-from-here/1121167#1121167 0 Answer by Brad Barker for Beyond simple coding: Where to go from here? Brad Barker 2009-07-13T18:16:07Z 2009-07-13T18:16:07Z <p>There is no magic bullet transition from academic puzzle solving programs to real world applications. The best way to learn is just to jump in head first. It will take you a very long time to learn what you need to if you only ever look at your own code. You need to be looking at code written by professionals and struggling to understand why it works the way it does until you do understand it.</p> <p>It seems overwhelming at first, but you will quickly start to see patterns if the application is at all logical. Well written code will be separated in logical ways, so you should be able to pick it apart one layer at a time.</p> <p>For example, you could try a bottom up approach where you try to understand how the database interactions are handled before looking at the code that uses the database layer. You keep going upward until you get to the GUI event handlers.</p> <p>Large enterprise applications can be even harder to understand because there might be a lot more than one executable, or component. Try to stay focused and learn what the component is responsible for doing, and then pick it apart a piece at a time.</p> <p>You will see that there are not just patterns at the function and class level, but at higher levels as well. This makes it simpler to understand what is going on when you understand those patterns.</p> http://stackoverflow.com/questions/1070787/writing-c-plugin-system/1070825#1070825 3 Answer by Brad Barker for Writing C# Plugin System Brad Barker 2009-07-01T19:12:17Z 2009-07-01T19:28:19Z <p>It sounds like you have a circular reference. You said your plugins reference Lab.Core.DLL, but you also say the plugins are loaded from Lab.Core.DLL.</p> <p>Am I misunderstanding what is happening here?</p> <p>EDIT: OK now that you have added your question to the question...</p> <p>You need to have Lab.Core.DLL accessible to the plugin being loaded since it is a dependency. Normally that would mean having it in the same directory or in the GAC.</p> <p>I suspect there are deeper design issues at play here, but this is your immediate problem.</p> http://stackoverflow.com/questions/302271/sending-mail-via-smtp-in-c-using-bcc-without-to 1 Sending Mail via SMTP in C# using BCC without TO Brad Barker 2008-11-19T15:32:12Z 2009-06-25T19:32:23Z <p>I am trying to use the System.Net.Mail.MailMessage class in C# to create an email that is sent to a list of email addresses all via BCC. I do not want to include a TO address, but it seems that I must because I get an exception if I use an empty string for the "TO" address in the MailMessage constructor. The error states that "TO" must not be the empty string. Surely it is possible to send an email using only BCC as this is not a limitation of SMTP. Is there a way around this?</p> <p>ArgumentException The parameter 'addresses' cannot be an empty string. Parameter name: addresses</p> http://stackoverflow.com/questions/1038214/java-api-break/1038264#1038264 0 Answer by Brad Barker for Java API break Brad Barker 2009-06-24T13:15:29Z 2009-06-24T13:15:29Z <p>I think the problem here is that you made part of your interface, implementation specific conditions. If the "C1" condition were only part of your implementation, then you could have simply created a new implementation that throws an exception on "C1" or "C2" without breaking the interface.</p> http://stackoverflow.com/questions/761867/why-does-this-code-cause-a-stack-overflow/761884#761884 3 Answer by Brad Barker for Why does this code cause a stack overflow? Brad Barker 2009-04-17T19:38:36Z 2009-04-17T19:38:36Z <p>In most languages, function calls go onto the <strong>call stack</strong>, which is really just the stack. Calling a function recursively keeps adding to the call stack. Eventually you fill up the stack, and you get a stack overflow. That's always a danger when running a recursive function where your recursion level is going to be deep.</p> http://stackoverflow.com/questions/86582/singleton-how-should-it-be-used/761784#761784 1 Answer by Brad Barker for Singleton: How should it be used Brad Barker 2009-04-17T19:09:19Z 2009-04-17T19:09:19Z <p>Most people use singletons when they are trying to make themselves feel good about using a global variable. There are legitimate uses, but most of the time when people use them, the fact that there can only be one instance is just a trivial fact compared to the fact that it's globally accessible.</p> http://stackoverflow.com/questions/748780/best-way-to-obfuscate-an-e-mail-address-on-a-website/748816#748816 0 Answer by Brad Barker for Best way to obfuscate an e-mail address on a website? Brad Barker 2009-04-14T18:30:56Z 2009-04-14T18:30:56Z <p>Honestly, your problem may be moot if you asked the question of whether or not a mailto is really what you want to use. A lot of people who use web mail, for example, or do not have the proper mail client setup in their browser are not going to benefit from a mailto. You are exposing your email address for a function that isn't going to work for a large portion of your users.</p> <p>What you could do instead is use a form to send the e-mail behind the scenes so that the e-mail address is hidden and you don't have to worry about the poor saps who won't benefit from a mailto.</p> http://stackoverflow.com/questions/744081/formulaes-to-generate-a-unique-id/744228#744228 1 Answer by Brad Barker for Formulae's to generate a unique id? Brad Barker 2009-04-13T15:18:01Z 2009-04-13T15:26:36Z <blockquote> <blockquote> <p>Are these considered Globally Unique?</p> </blockquote> <p>1) (int)DateTime.Now.Ticks 2) (int)DateTime.Now * RandomNumber</p> </blockquote> <p>Neither option is globally unique.</p> <p>Option 1 - This is only unique if you can guarantee no more than one ID is generated per tick. From your description, it does not sound like this would work.</p> <p>Option 2 - Random numbers are pseudo random, but not guaranteed to be unique. With that already in mind, we can reduce the DateTime portion of this option to a similar problem to option 1.</p> <p>If you want a globally unique ID that is an int32, one good way would be a synchronous service of some sort that returns sequential IDs. I guess it depends on what your definition of global means. If you had larger than an int32 to work with, and you mean global on a given network, then maybe you could use IP address with a sequence number appended, where the sequence number is generated synchronously across processes.</p> <p>If you have other unique identifiers besides IP address, then that would obviously be a better choice for displaying as part of a URL.</p> http://stackoverflow.com/questions/743918/are-try-catches-still-useful/743985#743985 0 Answer by Brad Barker for Are Try Catches still useful? Brad Barker 2009-04-13T14:08:57Z 2009-04-13T14:08:57Z <p>You should have a try/catch around any statement that might throw an exception that you can reasonably handle. By reasonably handling, I mean logging, cleanly closing down the application, sending an email, fixing the problem if possible, alerting the user, adding information to the exception and rethrowing, etc. If you can't do any of these things in a way that makes sense, then why catch it? With that said, there are times I delegate catching an exception to a higher level function, but rarely do I ever let an exception go completely uncaught. At the very least I can usually log an error, alert the user, and close the application.</p> http://stackoverflow.com/questions/730364/can-someone-explain-what-message-brokers-are-used-for/730410#730410 2 Answer by Brad Barker for Can someone explain what message brokers are used for? Brad Barker 2009-04-08T14:56:30Z 2009-04-08T15:02:42Z <p>Without getting into specifics about particular products, I can give you some of the benefits to using a typical message queuing system.</p> <p>They are typically good infrastructure for simulating the publisher/subscriber pattern. Think of a big event system where you are not limited to one executable, or even one machine. You put information into these queues, such that the data can be picked up by any application who is listening for it.</p> <p>Most message queuing systems allow for persistent queues. Think of a typical event system. If the listener is disconnected or otherwise unresponsive at the time of the event, then the event is missed. With a persistent message queue, the message will remain in queue until the listener is reconnected. No data/events are lost in this way.</p> <p>I don't know about the products you listed, but I know with JMS you can have fine grained control over threading as messages are popped from the queue. In theory, you could have a thread per queue, performing actions in that thread, on the messages as they are pulled off. Alternatively, you have the ability to pull messages from multiple queues and perform actions on them, all within a shared thread.</p> http://stackoverflow.com/questions/726856/find-if-an-sqlexception-was-thrown-because-of-a-duplicate/726917#726917 0 Answer by Brad Barker for Find if an SQLException was thrown because of a duplicate Brad Barker 2009-04-07T18:02:33Z 2009-04-07T18:02:33Z <p>I'm assuming you aren't using JDBC or this would be a very simple error lookup.</p> <p>Do you have a different set of classes for accessing the different databases? If so, you could catch the exception in the database specific classes and throw your own exception type that is shared among all the database types.</p> http://stackoverflow.com/questions/686216/what-code-would-you-have-on-your-wedding-cake/686739#686739 17 Answer by Brad Barker for What code would you have on your wedding cake? Brad Barker 2009-03-26T17:17:24Z 2009-03-26T17:17:24Z <pre><code>double GetBankAccountBalance() { if (isMarried) { return 0.0; } else { return lifeSavings; } } </code></pre> http://stackoverflow.com/questions/663974/why-wont-my-smtp-server-send-my-asp-net-mail/663993#663993 1 Answer by Brad Barker for Why won't my SMTP Server send my ASP.NET mail?! Brad Barker 2009-03-19T20:48:09Z 2009-03-19T20:57:33Z <p>Have you tried setting the SMTP Server and Port via the alternate <em>SmtpClient</em> constructors? At least that would tell us the problem isn't the configuration file.</p> <pre><code>int port = 1234; SmtpClient client = new SmtpClient("mail.mydomain.com", port); client.Send(message); </code></pre> http://stackoverflow.com/questions/650929/source-control-alternatives-to-tortoisesvn-for-a-one-man-developer-only-local-us/650967#650967 3 Answer by Brad Barker for Source control alternatives to TortoiseSVN for a one man developer, only local usage Brad Barker 2009-03-16T15:42:08Z 2009-03-16T15:42:08Z <p>Is the SO community really that brutal that you feel the need to delete your question, even though you haven't been satisfied by the responses in existing questions? If you feel something is lacking in the other questions and answers, then by all means ask without apprehension. I'd hate to think good questions don't get asked because of the user community.</p> <p>Back to the question: Tortoise is really going to be one of the nicer tools you will find due to the ability to quickly see in a plain Windows Explorer window what has changed since your last commit to the repository.</p> <p>No other tool that I know of would be better suited to an individual developer, but that's just my opinion.</p> http://stackoverflow.com/questions/643949/poll-whats-your-best-computer-science-analogy-to-a-real-life-situation/644036#644036 5 Answer by Brad Barker for Poll: What's your best computer science analogy to a real life situation? Brad Barker 2009-03-13T18:31:40Z 2009-03-13T18:31:40Z <p>Building secure software is like living in a glass house. You can defend yourself with cruise missiles, but it still only takes one rock.</p> http://stackoverflow.com/questions/643949/poll-whats-your-best-computer-science-analogy-to-a-real-life-situation/644015#644015 2 Answer by Brad Barker for Poll: What's your best computer science analogy to a real life situation? Brad Barker 2009-03-13T18:28:29Z 2009-03-13T18:28:29Z <p>We all like to build flexible software, but we know that some change requests are "MUCH" harder than others, and often are not feasible for any number of reasons.</p> <p>It's like when an architect sees the final product of his design with the customer, and the customer says, "I really like just about everything, but I want you to change the color of the bricks".</p> http://stackoverflow.com/questions/643032/is-disneys-fastpass-valid-and-or-useful-queue-theory/643148#643148 13 Answer by Brad Barker for Is Disney's FastPass Valid and/or Useful Queue Theory Brad Barker 2009-03-13T15:08:01Z 2009-03-13T15:44:16Z <p>The fast pass line is obviously not going to increase total throughput on a given ride queue, but it does help in resource scheduling and resource assignment where people and rides are the resources.</p> <p>Like I said, you aren't going to create any more total throughput for said ride, but there may be rides being underutilized elsewhere. If you are now able to ride these rides as well as the rides you have to wait on, then you can increase the overall efficiency of the park. What I mean by that is minimizing the amount of rides that are running below passenger capacity.</p> <p>If you have computer resources sitting idle, waiting to perform a task that might take a long time, it makes sense to utilize this resource for something else in the meantime right? It's simple from that perspective.</p> http://stackoverflow.com/questions/643217/what-is-the-best-data-structure-for-this-in-memory-lookup-table/643283#643283 1 Answer by Brad Barker for What is the best data structure for this in-memory lookup table? Brad Barker 2009-03-13T15:36:34Z 2009-03-13T15:36:34Z <p>Is it really necessary to key into the same structure with both types of key? You probably don't need to rebuild a complex data structure yourself. You could do some sort of encapsulation for the lookup table so that you really have two lookup tables if memory is not an issue. You could use this encapsulating structure to simulate being able to pull out the value from the "same" structure with either type of key.</p> <p>OR</p> <p>If there is some way to map between the enum value and the string key you could go that route with only having one type of lookup table.</p> http://stackoverflow.com/questions/635519/business-validation-logic-code-smell/635553#635553 0 Answer by Brad Barker for Business Validation Logic Code Smell Brad Barker 2009-03-11T17:27:18Z 2009-03-11T17:33:28Z <p>It may or may not "smell", but I'm leaning more towards, "Yes it smells". </p> <p>Does setting OurProperty to the default have a logical reason for doing so or is it simply convenient to do so in code? It is possible, however unlikely in practice, to contrive a scenario where this would be expected behavior, but I'm guessing that in most cases you should be throwing an exception and handling it cleanly somewhere.</p> <p>Does setting the value to default get you closer to or move you away from the <em>functional</em> specifications description of how the application is supposed to work?</p> http://stackoverflow.com/questions/582603/factory-pattern/582749#582749 2 Answer by Brad Barker for Factory pattern Brad Barker 2009-02-24T17:42:09Z 2009-02-24T17:42:09Z <blockquote> <p>I've been trying to <strong>create a factory (in Java) that prohibits subclassing of the factory product</strong> and prevents the concrete factories from being used by anyone except the abstract factory. What do you think of this...</p> </blockquote> <p>What you have created is a class that prohibits subclassing, not a factory that prevents subclassing of the factory product. Although subtle, that is an important difference.</p> <p>If this is for homework, then I guess the reason for the question is a moot point, but under normal circumstances I would be very suspicious of the reason for doing something like this. What problem would you trying to solve? That is the purpose of code, after all.</p> http://stackoverflow.com/questions/578068/looking-for-a-phrase-that-expresses-convoluted-code/578603#578603 0 Answer by Brad Barker for looking for a phrase that expresses convoluted code Brad Barker 2009-02-23T17:49:25Z 2009-02-23T17:49:25Z <p>I'd say the application is <strong>put together with electrical tape and bailing wire</strong>. </p> <p>This means that it is easily broken if you try to modify the way the system works in it's exact, current incarnation.</p> http://stackoverflow.com/questions/469445/last-words-of-a-programmer/469561#469561 297 Answer by Brad Barker for Last words of a ??? programmer Brad Barker 2009-01-22T15:24:04Z 2009-01-22T15:24:04Z <p>C/C++:</p> <pre><code>if (launchMissiles = true) { FireNukes(); } </code></pre> http://stackoverflow.com/questions/439489/what-can-we-do-about-a-randomly-crashing-app-without-source-code 1 What can we do about a randomly crashing app without source code? Brad Barker 2009-01-13T15:53:09Z 2009-01-14T18:11:15Z <p>I am trying to help a client with a problem, but I am running out of ideas. They have a custom, written in house application that runs on a schedule, but it crashes. I don't know how long it has been like this, so I don't think I can trace the crashes back to any particular software updates. The most unfortunate part is there is no longer any source code for the VB6 DLL which contains the meat of the logic.</p> <p>This VB6 DLL is kicked off by 2-3 function calls from a VB Script. Obviously, I can modify the VB Script to add error logging, but I'm not having much luck getting quality information to pinpoint the source of the crash. I have put logging messages on either side of all of the function calls and determined which of the calls is causing the crash. However, nothing is ever returned in the err object because the call is crashing wscript.exe.</p> <p>I'm not sure if there is anything else I can do. Any ideas?</p> <p>Edit: The main reason I care, even though I don't have the source code is that there may be some external factor causing the crash (insufficient credentials, locked file, etc). I have checked the log file that is created in drwtsn32.log as a result of wscript.exe crashing, and the only information I get is an "Access Violation".</p> <p>I first tend to think this is something to do with security permissions, but couldn't this also be a memory access violation?</p> http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/421994#421994 4 Answer by Brad Barker for Anyone else find naming classes and methods one of the most difficult part in programming? Brad Barker 2009-01-07T20:41:52Z 2009-01-07T20:41:52Z <p>Sometimes there isn't a good name for a class or method, it happens to us all. Often times, however, the inability to come up with a name may be a hint to something wrong with your design. Does your method have too many responsibilities? Does your class encapsulate a coherent idea?</p> http://stackoverflow.com/questions/375996/compare-the-content-of-two-objects-for-equality/376008#376008 0 Answer by Brad Barker for Compare the content of two objects for equality Brad Barker 2008-12-17T20:59:41Z 2008-12-17T20:59:41Z <p>You could simply write a utility method in another class to do the comparison. However, that is assuming the properties of the class in question are publicly accessible. Are they?</p> http://stackoverflow.com/questions/361115/whats-wrong-with-this-memory-allocation/361134#361134 2 Answer by Brad Barker for What's wrong with this memory allocation Brad Barker 2008-12-11T21:56:59Z 2008-12-11T21:56:59Z <p>I don't see the problem at first glance, but it doesn't mean it's not there. Please make sure you aren't doing a double free by freeing the memory somewhere in the "do something" section.</p> http://stackoverflow.com/questions/360928/sql-server-indexes-arent-helping/360941#360941 0 Answer by Brad Barker for SQL Server Indexes Aren't Helping Brad Barker 2008-12-11T21:10:38Z 2008-12-11T21:27:20Z <p>For a table of that size your best bet is probably going to be partitioning your table and indexes.</p> http://stackoverflow.com/questions/338853/nvarchar256/338878#338878 1 Answer by Brad Barker for nvarchar(256)....? Brad Barker 2008-12-03T21:56:30Z 2008-12-03T21:56:30Z <p>2^8 is 256, not 255.</p> <p>Many times you will see numbering schemes from 0-255 which is 256 numbers when you include the 0.</p> http://stackoverflow.com/questions/102702/are-people-with-certain-myers-briggs-personality-types-drawn-to-careers-in-progra/176109#176109 0 Answer by Brad Barker for Are people with certain Myers Briggs personality types drawn to careers in programming/development? Brad Barker 2008-10-06T20:41:40Z 2008-10-06T20:41:40Z <p>ENTJ for what it's worth.</p> http://stackoverflow.com/questions/8742/getting-accurate-ticks-from-a-timer-in-c/8865#8865 Comment by Brad Barker on Getting accurate ticks from a timer in C# Brad Barker 2009-07-20T13:51:26Z 2009-07-20T13:51:26Z Right. I agree with what you said about not being able to pinpoint the time of the next tick. The point of what I am saying is you don't want to be executing tick event code from a previous tick when your next tick occurs. http://stackoverflow.com/questions/1133355/c-writing-to-the-event-viewer Comment by Brad Barker on c# writing to the event viewer Brad Barker 2009-07-15T19:16:31Z 2009-07-15T19:16:31Z please provide a stack trace http://stackoverflow.com/questions/1120757/beyond-simple-coding-where-to-go-from-here/1120776#1120776 Comment by Brad Barker on Beyond simple coding: Where to go from here? Brad Barker 2009-07-13T18:22:20Z 2009-07-13T18:22:20Z I am not doubting the usefulness of Haskell in real world applications, but learning Haskell seems like a very strange recommendation for someone trying to learn how to build real world software, as opposed to just learning another language. http://stackoverflow.com/questions/1070787/writing-c-plugin-system/1070801#1070801 Comment by Brad Barker on Writing C# Plugin System Brad Barker 2009-07-01T20:07:12Z 2009-07-01T20:07:12Z @RichardOD, I don't disagree, but we are still yet to come to a definitive answer for this question. It still serves as a good programming exercise if nothing else. http://stackoverflow.com/questions/1070787/writing-c-plugin-system Comment by Brad Barker on Writing C# Plugin System Brad Barker 2009-07-01T19:35:40Z 2009-07-01T19:35:40Z Zack, check my answer below. To prove it, configure your plugin directory to the same directory as your executable and other DLL's. http://stackoverflow.com/questions/1070787/writing-c-plugin-system/1070801#1070801 Comment by Brad Barker on Writing C# Plugin System Brad Barker 2009-07-01T19:22:34Z 2009-07-01T19:22:34Z Well, I don't have a problem with the answer if my first comment came off as confrontational. It's actually good to have this in here to know it exists. Also, though, I hope we get to see what is wrong with this plugin example. http://stackoverflow.com/questions/1070787/writing-c-plugin-system/1070801#1070801 Comment by Brad Barker on Writing C# Plugin System Brad Barker 2009-07-01T19:14:13Z 2009-07-01T19:14:13Z This should really be possible without the use of MEF. http://stackoverflow.com/questions/794249/c-threading-and-queues Comment by Brad Barker on C# Threading and Queues Brad Barker 2009-04-27T19:11:38Z 2009-04-27T19:11:38Z From looking at your code, you at least have the main thread and the thread where you think Dequeue is being called. Why not name your threads, and every time Dequeue is called, log the name of the thread with a stack trace. You might find that something in the main thread is behaving in a way you weren't expecting. http://stackoverflow.com/questions/703035/when-are-you-truly-forced-to-use-uuid-as-part-of-the-design/786541#786541 Comment by Brad Barker on When are you truly forced to use UUID as part of the design? Brad Barker 2009-04-24T16:36:24Z 2009-04-24T16:36:24Z This is by far the best explanation. I don't know why this isn't being voted to the top. Kudos to you Sporkmonger. http://stackoverflow.com/questions/778963/stackoverflowexception-without-recursion-or-infinite-loop Comment by Brad Barker on StackOverflowException without recursion or infinite loop? Brad Barker 2009-04-22T20:33:39Z 2009-04-22T20:33:39Z If you break right before the ToString call and put e.Value.ToString() in your watch window, does it cause the stackoverflow from the debugger? http://stackoverflow.com/questions/778963/stackoverflowexception-without-recursion-or-infinite-loop Comment by Brad Barker on StackOverflowException without recursion or infinite loop? Brad Barker 2009-04-22T20:26:36Z 2009-04-22T20:26:36Z It's a long shot, but what is in e.Value? If the ToString on that is defined recursively then you could have a stackoverflow. Yes it sounds crazy, but easier than you might think especially when you have an object with a property that allows you to do a &quot;set&quot; with type Object that might just happen to contain itself. http://stackoverflow.com/questions/23886/sql-pronunciation/23912#23912 Comment by Brad Barker on SQL Pronunciation Brad Barker 2009-04-22T18:29:01Z 2009-04-22T18:29:01Z Putting what is actually correct aside, I hear &quot;Sequel&quot; and &quot;S.Q.L.&quot; about 50/50. I hear &quot;My Sequel&quot; a lot and &quot;My S.Q.L.&quot; almost never. I have never heard anyone say &quot;Postgre Sequel&quot;, only &quot;Postgres Q. L.&quot;. http://stackoverflow.com/questions/748780/best-way-to-obfuscate-an-e-mail-address-on-a-website/748805#748805 Comment by Brad Barker on Best way to obfuscate an e-mail address on a website? Brad Barker 2009-04-14T18:38:38Z 2009-04-14T18:38:38Z No matter how good your spam filtering is there are going to be false negatives (mails that get through that shouldn't). Ultimately you have to live with the e-mail address, but it seems like this kind of unnecessary exposure would increase the recurrence of spam getting through. http://stackoverflow.com/questions/744081/formulaes-to-generate-a-unique-id/744103#744103 Comment by Brad Barker on Formulae's to generate a unique id? Brad Barker 2009-04-13T15:29:46Z 2009-04-13T15:29:46Z No, unless your tick is any number on the continuous, real, number line, then such a method is rate limited because there is no guarantee that there will not be collisions. http://stackoverflow.com/questions/726856/find-if-an-sqlexception-was-thrown-because-of-a-duplicate Comment by Brad Barker on Find if an SQLException was thrown because of a duplicate Brad Barker 2009-04-07T18:12:05Z 2009-04-07T18:12:05Z How are you accessing the data in code? Are you going through JDBC or do you have database specific classes?