User Dave DuPlantis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T12:09:29Zhttp://stackoverflow.com/feeds/user/8174http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1474864/classic-asp-its-totally-outdated-but-is-it-irrelevant/1650876#16508760Answer by Dave DuPlantis for Classic ASP - It’s totally outdated but is it irrelevant?Dave DuPlantis2009-10-30T16:24:15Z2009-10-30T16:24:15Z<p>Classic ASP certainly isn't as common now as it was before the introduction of the .NET family, but I don't think you're hurting yourself much by maintaining personal sites in it. If you were self-employed and looking for work as a .NET developer, it might be odd to have personal sites only in Classic ASP; in that situation, you could convert one or more to .NET, and that might help you demonstrate your skills in both sets of languages. </p>
http://stackoverflow.com/questions/725875/anti-xss-and-classic-asp/1639652#16396520Answer by Dave DuPlantis for Anti XSS and Classic ASP.Dave DuPlantis2009-10-28T19:49:22Z2009-10-28T19:49:22Z<p>If you do have to allow certain HTML tags (as I do in my current project), you can use a regex to allow only those tags and no others, like so:</p>
<pre><code>set objRegExp = new RegExp
with objRegExp
.Pattern = "<^((b)|(i)|(em)|(strong)|(br))>.*</.*>"
.IgnoreCase = varIgnoreCase
.Global = True
end with
cleanString = objRegExp.replace(originalString, "")
</code></pre>
http://stackoverflow.com/questions/142273/standard-way-to-detect-mobile-browsers-in-a-web-application-based-on-the-http-req/1555338#15553381Answer by Dave DuPlantis for Standard way to detect mobile browsers in a web application based on the http requestDave DuPlantis2009-10-12T15:50:01Z2009-10-12T15:50:01Z<p>When I had a similar need recently, I found <a href="http://www.brainhandles.com/techno-thoughts/detecting-mobile-browsers" rel="nofollow">this code</a> that uses <code>HTTP_X_WAP_PROFILE</code>, <code>HTTP_ACCEPT</code>, and <code>HTTP_USER_AGENT</code> to identify a browser as mobile or non-mobile. It's PHP but could be converted fairly easily into whatever you need (I implemented it in VBScript for classic ASP). </p>
<p>Ironically, it turned out that I didn't end up using the code because we decided to provide specific URLs for mobile and non-mobile users, but it certainly worked when I was testing it ...</p>
http://stackoverflow.com/questions/1191131/common-programming-mistakes-for-coldfusion-programmer-to-avoid/1521204#15212040Answer by Dave DuPlantis for Common programming mistakes for ColdFusion programmer to avoid?Dave DuPlantis2009-10-05T16:55:34Z2009-10-05T16:55:34Z<p>Putting variables in the wrong scope; even if you don't blow up the registry or crash the server, it's easy to slowly drain performance from your application by bumping variables up to the highest scope in which you think you might need them, or to lose information because you stored it in one scope and tried to access them in a different scope. </p>
<p>Using <code>cfcatch</code> without capturing and/or transmitting some information about the error so that it can be found and fixed. (It's difficult to find an error that doesn't tell you it occurred.)</p>
<p>Using <code>listcontains()</code> when you want <code>listfind()</code>. Especially if the list contains numbers. <code>listfind()</code> matches only an entire item in a list; <code>listcontains()</code> matches part of an item. (Yes, we made this mistake once.)</p>
<p>With administrator access:</p>
<ul><li>Leaving the defaults for a data source set up on the server. "Least privileges" applies on the CF side as well; don't give it any more permissions than it specifically needs. (GRANT, ALTER, REVOKE, DROP ... you don't really want those checked.)</li>
<li>Not checking the boxes for retrieving all the contents from a CLOB/BLOB field when that's what you're expecting. (It was really interesting seeing that applied to a field in which we were storing PDFs.)</li>
</ul>
http://stackoverflow.com/questions/1309875/flex-coldfusion-and-multiple-remote-objects/1520856#15208560Answer by Dave DuPlantis for Flex coldfusion and multiple remote objectsDave DuPlantis2009-10-05T15:43:16Z2009-10-05T15:43:16Z<p>It looks like your remote object definitions aren't included in the AS snippet above. Do you create them in another section of the code? If so, please add just that part so we can see how you are creating the object. You don't mention what error you are getting, if any; that would be helpful to know as well.</p>
<p>Also, I see you figured out you don't need to create a separate <code>RemoteObject</code> instance for each method in your CFC. A single instance will work for all of them, as long as you add a <code>method</code> element for each function. For example:</p>
<pre><code> <mx:RemoteObject
id="VacancyGateway_RO"
destination="ColdFusion"
source="wherever.your.CFC.is.located">
<mx:method name="getVacancies" result="getVacanciesRO_Handler(event)"
fault="mx.controls.Alert.show(event.fault.faultString)"/>
<mx:method name="getVacancyTotals" result="getVacancyTotalsRO_Handler()"
fault="mx.controls.Alert.show(event.fault.faultString)"/>
</mx:RemoteObject>
</code></pre>
<p>I only mention that because I recently worked on a project where the previous developer(s) created a <code>RemoteObject</code> for every method they called ... and there were a lot of methods in some of the CFCs.</p>
http://stackoverflow.com/questions/290475/read-only-access-data-source/290573#2905731Answer by Dave DuPlantis for Read-only Access data sourceDave DuPlantis2008-11-14T16:07:28Z2008-11-14T16:07:28Z<p>To build on Matt's answer, I would recommend a combination of adOpenForwardOnly and adLockReadonly: ForwardOnly because you just need to insert those trades into SQL Server, and Readonly so you aren't locking out other processes (what else would hit these tables?). Fortunately, these are the default options. :) </p>
http://stackoverflow.com/questions/281398/weighted-mean/281499#2814990Answer by Dave DuPlantis for Weighted MeanDave DuPlantis2008-11-11T17:07:57Z2008-11-11T17:07:57Z<p>What made it clear that weighting would be more appropriate? What are you seeing in an arithmetic mean that isn't helpful to you? I'm curious because it seems like the answer you are seeking might not necessarily meet your needs the best. (Also, a 16-point scale is typically much larger than what most people need; people rarely differentiate between so many points and tend to cluster their responses around a select group of answers.)</p>
<p>The concept you linked to pulls the mean toward the mean for the site; your mean simply pulls itself toward the most common response. Typically if you use a mean and wish to weight the responses, you would do so based on something about the respondents (putting more weight on responses from more knowledgeable people, people who frequent the site more, or other things like that). </p>
<p>You might also consider using calculations other than mean scores, maybe a top-N-box percentage (percentage of respondents giving the top N difficulty ratings).</p>
<p>Otherwise, the formula for your mean is sum(response * count * count) / sum(count * count) ...</p>
<pre><code>select sum(response*ct*ct)/sum(ct*ct) from
( select response, count(response) as ct from your_table group by response) data
</code></pre>
<p>Apologies if the syntax isn't exact, I don't have MySQL at work.</p>
<p>Note that you may have to convert the sums from ints to floats; not sure exactly how that works in MySQL. In SQL Server, you have to cast one of the sums so it understands you don't want an integral mean.</p>
http://stackoverflow.com/questions/281339/confirm-before-delete-update-in-sql-management-studio/281392#2813921Answer by Dave DuPlantis for Confirm before delete/update in SQL Management Studio?Dave DuPlantis2008-11-11T16:29:07Z2008-11-11T16:29:07Z<p>In SSMS 2005, you can enable this option under Tools|Options|Query Execution|SQL Server|ANSI ... check <code>SET IMPLICIT_TRANSACTIONS</code>. That will require a commit to affect update/delete queries for future connections. </p>
<p>For the current query, go to Query|Query Options|Execution|ANSI and check the same box.</p>
<p><a href="http://bytes.com/forum/thread499461.html" rel="nofollow">This page</a> also has instructions for SSMS 2000, if that is what you're using.</p>
<p>As others have pointed out, this won't address the root cause: it's almost as easy to paste a COMMIT at the end of every new query you create as it is to fire off a query in the first place.</p>
http://stackoverflow.com/questions/269605/multiple-not-distinct/269671#2696715Answer by Dave DuPlantis for Multiple NOT distinctDave DuPlantis2008-11-06T18:05:26Z2008-11-06T18:05:26Z<p>Another way of returning the results you want would be this:</p>
<pre><code>select *
from
my_table
where
B in
(select B from my_table group by B having count(*) > 1)
</code></pre>
http://stackoverflow.com/questions/268980/where-do-you-get-xml-file-formats-from/269240#2692401Answer by Dave DuPlantis for Where do you get XML file formats fromDave DuPlantis2008-11-06T16:02:53Z2008-11-06T16:02:53Z<p>Actually, XML is self-documenting, when used with a <a href="http://en.wikipedia.org/wiki/Document_Type_Definition" rel="nofollow">DTD</a> or an <a href="http://en.wikipedia.org/wiki/XML_Schema_(W3C)" rel="nofollow">XSD</a>, and that is one of its advantages when compared to plain-text files.</p>
<p>As you've guessed, though, using XML to transfer data properly does require some work. I found the <a href="http://www.w3schools.com/xml/default.asp" rel="nofollow">XML tutorial</a> and <a href="http://www.w3schools.com/schema/default.asp" rel="nofollow">XSD tutorial</a> at w3schools.com to be helpful. If you go down this road, you may be interested in their <a href="http://www.w3schools.com/xsl/default.asp" rel="nofollow">tutorial</a> on <a href="http://en.wikipedia.org/wiki/XSLT" rel="nofollow">XSLT</a> as well.</p>
<p>At first, as <a href="http://stackoverflow.com/questions/268980/where-do-you-get-xml-file-formats-from#269020">Vincent suggests</a>, you may want to use an existing schema if one is available. On the other hand, you might find it easier to learn XSD if you build your own (probably using an existing one as a starting point). </p>
http://stackoverflow.com/questions/266123/flex-is-there-a-way-to-specify-what-direction-a-combobox-will-open/266280#2662800Answer by Dave DuPlantis for Flex - Is there a way to specify what direction a ComboBox will open?Dave DuPlantis2008-11-05T19:29:14Z2008-11-05T19:29:14Z<p>I would recommend checking out <a href="http://www.typeoneerror.com/forcing-combobox-component-open-direction-in-flex/" rel="nofollow">this post</a>. Yes, you do have to grab the ComboBox code and modify it, but at least now you have an idea where the modifications need to go.</p>
http://stackoverflow.com/questions/259634/splitting-a-persons-name-into-forename-and-surname/259643#25964312Answer by Dave DuPlantis for Splitting a person's name into forename and surnameDave DuPlantis2008-11-03T19:23:04Z2008-11-03T19:23:04Z<p>The problem with trying to split the names from a single input is that you won't get the full surname for people with spaces in their surname, and I don't believe you'll be able to write code to manage that completely.</p>
<p>I would recommend that you ask for the names separately if it is at all possible.</p>
http://stackoverflow.com/questions/253159/how-would-i-start-learning-how-to-program-in-flex/253551#2535510Answer by Dave DuPlantis for How would I start learning how to program in Flex?Dave DuPlantis2008-10-31T13:54:09Z2008-10-31T13:54:09Z<p>lynda.com has <a href="http://movielibrary.lynda.com/html/modListing.asp?pid=205" rel="nofollow">a set of Flex videos</a>, including <a href="http://movielibrary.lynda.com/html/modPage.asp?ID=438" rel="nofollow">basic Flex 3</a>, <a href="http://movielibrary.lynda.com/html/modPage.asp?ID=437" rel="nofollow">advanced topics</a>, and <a href="http://movielibrary.lynda.com/html/modPage.asp?ID=542" rel="nofollow">AIR Essentials</a>.</p>
<p>It's a subscription site, but for $250 a year, if you use other Adobe products like <a href="http://movielibrary.lynda.com/html/modListing.asp?pid=274" rel="nofollow">ColdFusion 8</a> or the new <a href="http://movielibrary.lynda.com/html/modListing.asp?pid=362" rel="nofollow">CS 4</a> (they have plenty of CS 3 videos too), it's easily worth it.</p>
http://stackoverflow.com/questions/250742/who-sells-the-cheapest-ev-ssl-certificate/250753#2507534Answer by Dave DuPlantis for Who sells the cheapest EV SSL certificate?Dave DuPlantis2008-10-30T16:05:25Z2008-10-30T16:23:34Z<p>Well, there is <a href="http://www.sslshopper.com/ssl-certificate-comparison.html?ids=10,43,46,50,59" rel="nofollow">one source</a> that says you should go with <a href="http://www.sslshopper.com/comodo-certificate-authority-reviews.html" rel="nofollow">Comodo</a>, but I would recommend that you read about the various providers before buying. Cheap may be attractive, but it isn't always the best way to go.</p>
<p>Comodo <a href="http://www.instantssl.com/ssl-certificate-products/ssl/ssl-certificate-ev.html" rel="nofollow">Instant SSL</a> EV SSL</p>
<p>$449 per year or<br />
$718 for 2 years ($359/year)</p>
http://stackoverflow.com/questions/250583/outlook-redemption-getnamesfromids/250698#2506981Answer by Dave DuPlantis for Outlook Redemption : GetNamesFromIDs Dave DuPlantis2008-10-30T15:50:24Z2008-10-30T15:50:24Z<p>Well, for background info, the author <a href="http://www.pcreview.co.uk/forums/thread-1858064.php" rel="nofollow">suggests</a> using something like <a href="http://www.dimastr.com/outspy/" rel="nofollow">OutlookSpy</a> to see how Outlook stores the properties.</p>
<p>Looking at <a href="http://www.tech-archive.net/Archive/Development/microsoft.public.win32.programmer.messaging/2007-01/msg00085.html" rel="nofollow">this exchange</a> (make sure to read through all the follow-up responses), there isn't much more (in fact, I think at one point the Outlook MVP types <code>GetNamesFromIDs</code> when he means <code>GetIDsFromNames</code>).</p>
<p>What you might try is using <code>GetIDsFromNames</code> to see what that returns, and then use that to pass to <code>GetNamesFromIDs</code>.</p>
<p>I've used Redemption before, but not in this particular manner, so that's all I've got for you ...</p>
http://stackoverflow.com/questions/249891/online-reference-listing-all-standard-sql-keywords/249957#2499570Answer by Dave DuPlantis for Online reference listing all standard SQL keywords?Dave DuPlantis2008-10-30T12:08:02Z2008-10-30T12:08:02Z<p>You can find Oracle 10g reserved words <a href="http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/ap_keywd.htm#i690190" rel="nofollow">here</a>. The <a href="http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/toc.htm" rel="nofollow">table of contents</a> also lists all functions.</p>
http://stackoverflow.com/questions/246319/peer-review-code-before-or-after-check-in/246680#2466802Answer by Dave DuPlantis for peer review code before or after check inDave DuPlantis2008-10-29T12:56:28Z2008-10-29T12:56:28Z<p>I will respectfully disagree with <a href="http://stackoverflow.com/questions/246319/peer-review-code-before-or-after-check-in#246330">Jon's answer</a>. The value of checking in early and often is related to several things: the quality of the code being checked in, the volume of that code, and the degree of overlap between developers. </p>
<p>If you generate quite a bit of code, it's important to do something to support code quality prior to making it available to other developers. The act of checking in code itself doesn't remove or prevent defects. If you are using CI tools, they'll certainly let you know if you've broken the build, but it's not difficult to introduce defects that don't break the build. Inspections can be more effective than system, integration, or even component testing in terms of removing defects from code, and in a high-volume environment, or one where several developers are not co-located, you may choose to spend more time on inspections and less time on coding in order to keep the quality of repository code high.</p>
<p>However, pretty much every SQA activity is like a "one-size-fits-all" hat: it doesn't fit "all". Many companies will have a development process that allows them to produce quality code without using peer reviews prior to committing code, and there's nothing wrong with that. As pointed out in the <a href="http://stackoverflow.com/questions/20327/code-review-vs-check-in-often">related question</a>, pair programming can be an effective way to avoid roadblocks due to required inspections. (I suppose you could argue that you're not actually avoiding peer review, you're simply doing it while you're coding.)</p>
<p>If there is a question about what you should do at your own place of work, I'd recommend collecting data on your current process. If you can demonstrate that you produce quality code using your current development process, then I think that's really all you need to know. If you're seeing too many defects in released code, then maybe it's worth changing your approach.</p>
http://stackoverflow.com/questions/244345/how-do-you-unit-test-a-unit-test/244502#2445022Answer by Dave DuPlantis for How do you unit test a unit test?Dave DuPlantis2008-10-28T19:24:17Z2008-10-28T19:24:17Z<p>Remember that the cost of fixing defects increases (exponentially) as the defects live through the development cycle. Yes, the testing team might catch the defect, but it will (usually) take more work to isolate and fix the defect from that point than if a unit test had failed, and it will be easier to introduce other defects while fixing it if you don't have unit tests to run. </p>
<p>That's usually easier to see with something more than a trivial example ... and with trivial examples, well, if you somehow mess up the unit test, the person reviewing it will catch the error in the test or the error in the code, or both. (They are being reviewed, right?) As <a href="http://stackoverflow.com/questions/244345/how-do-you-unit-test-a-unit-test#244386">tvanfosson points out</a>, unit testing is just one part of an SQA plan. </p>
<p>In a sense, unit tests are insurance. They're no guarantee that you'll catch every defect, and it may seem at times like you're spending a lot of resources on them, but when they do catch defects that you can fix, you'll be spending a lot less than if you'd had no tests at all and had to fix all defects downstream.</p>
http://stackoverflow.com/questions/243971/function-point-to-kloc-ratio-as-a-software-metric-the-name-that-tune-metric/243994#2439940Answer by Dave DuPlantis for Function point to kloc ratio as a software metric... the "Name That Tune" metric?Dave DuPlantis2008-10-28T16:43:19Z2008-10-28T16:43:19Z<p>KLOC is tolerable if you strictly enforce code standards, kind of like using page requirements for a report: no putting five statements on a single line or removing most of the whitespace from your code.</p>
<p>I guess one way you could decide how effective it is for your environment is to look at several different applications and modules, get a rough estimate of the quality of the code, and compare that to the size of the code. If you can demonstrate that code quality is consistent within your organization, then KLOC isn't a bad metric. </p>
<p>In some ways, you'll face the same battle with any similar metric. If you count feature or function points, or simply features or modules, you'll still want to weight them in some fashion. Ultimately, you'll need some sort of subjective supplement to the objective data you'll collect.</p>
http://stackoverflow.com/questions/239792/how-to-change-a-columns-row-source-in-access-table-at-run-time/239954#2399542Answer by Dave DuPlantis for How to change a column's "Row Source" in Access table at run-time?Dave DuPlantis2008-10-27T13:55:22Z2008-10-27T13:55:22Z<p>I don't know whether or not this is an option for you, but I would recommend separating the table and filtering options, setting up a form to do the data entry and modification and using code to set the Row Source for the combo box on the form. As you've already seen, while Access does provide the opportunity to treat tables as more than just tables, that is primarily for GUI purposes. Behind the scenes, Access prefers that you work with forms for data entry.</p>
<p>If you need to pursue the table method, you might try looking at the MS knowledge base articles referenced <a href="http://www.mdbmakers.com/forums/showthread.php?t=187" rel="nofollow">here</a>. (The kb articles are <a href="http://support.microsoft.com/kb/151196" rel="nofollow">here</a> and <a href="http://support.microsoft.com/kb/159367" rel="nofollow">here</a>.) Keep in mind that these refer to Access 97 and may no longer be relevant. I wasn't able to find any more recent references to those properties in an Access tabledef.</p>
http://stackoverflow.com/questions/234734/games-that-teach-programming-fundamentals/235015#2350152Answer by Dave DuPlantis for Games that teach Programming FundamentalsDave DuPlantis2008-10-24T19:45:30Z2008-10-24T19:45:30Z<p>Well, you have to be careful with some games ... some MtG players may end up as one of those programmers who can only write code in X language for Y purpose. :) ("No thanks, I'll stick with my red-and-black deck ...")</p>
<p>Certainly any game that requires some sort of programmable moves would qualify. Heck, you could throw in turn-based strategy games as well (Heroes of Might and Magic, old-school Warcraft). </p>
<p>But I think you could make the case that just about any game could help you with programming ... although some games might only qualify as long as you think about it from a programmer's perspective. (How would I keep the game clock running properly? How would I tell which piece the player wants to move? How do I set up an AI?) Thinking ahead, learning rules, acting only within the boundaries of the game ...</p>
<p>In fact, you might even try writing your own versions of games. There's nothing that shows you what it takes to write a good game quite like writing one yourself.</p>
<p>(Disclaimer: I'm an avid gamer. Gaming and programming have gone hand-in-hand with me ever since I could do either. When we got our Apple II+ back in the day, I was split between wanting to learn Applesoft Basic and wanting to play another Scott Adams adventure.)</p>
http://stackoverflow.com/questions/234296/coldfusion-vs-php/234464#2344641Answer by Dave DuPlantis for ColdFusion vs PHPDave DuPlantis2008-10-24T17:21:38Z2008-10-24T17:21:38Z<p>I don't have any experience comparing PHP and ColdFusion, but I can speak from a ColdFusion perspective. </p>
<p>It can certainly be used to develop enterprise applications, and it can be used for both individual and group development - I did both at my last job and am doing individual development at my current job. Of course, you will need to use proper project management to develop quality applications, as you would using any language.</p>
<p>I don't think it would be worthwhile to move the app to PHP if you were developing it in CF. Porting any application from one language to another is a ton of work; doing an application twice is probably not the right direction to choose.</p>
<p>I think one approach you might take is to consider where expertise would be. Do you know people who know either language well? Does anyone on the team know either language? How much time do you have to learn? </p>
<p>If you have a reasonable amount of experience with one and not the other, that's the language I'd suggest. If you have experience with neither, but you have access to quality resources for one, pick that one. Otherwise, I expect it's six of one and a half dozen of the other.</p>
http://stackoverflow.com/questions/233702/where-does-outlook-store-the-vba-code-files/233760#2337601Answer by Dave DuPlantis for Where does Outlook store the VBA code files?Dave DuPlantis2008-10-24T14:28:30Z2008-10-24T14:28:30Z<p><a href="http://www.outlookcode.com/article.aspx?id=28" rel="nofollow">This page</a> has some really good insight on where Outlook keeps all its stuff. It suggests the following:</p>
<blockquote>
<p>All Outlook macros are stored in a single file named VbaProject.otm in the user's %appdata%\Microsoft\Outlook folder, which will be a hidden folder on most systems.</p>
</blockquote>
<p>Now, the problem is that if you do not see them now, then you probably won't be able to restore them from that location: there is probably either an "empty" project there or no project at all, but if that folder is being backed up, you might be able to restore it.</p>
<p>Moving forward, you might consider exporting your macros periodically in case this happens again, either through the VBA IDE (right-click and select Export File...) or using one of the tools mentioned in the linked article (like the <a href="http://office.microsoft.com/en-us/ork2003/HA011513591033.aspx" rel="nofollow">Office Profile Wizard</a>).</p>
http://stackoverflow.com/questions/233599/agile-programming-for-non-technical-people/233641#2336415Answer by Dave DuPlantis for Agile programming for non-technical peopleDave DuPlantis2008-10-24T14:00:29Z2008-10-24T14:00:29Z<p>If I may be gross and overly simple ...</p>
<p>You could think of agile programming this way: it's like a scaled-down version of Habitat for Humanity. Instead of ordering a house and having it built for you, and not being able to take possession until it's completely done, you pitch in and work with the group to build it. Regularly, you decide as a group which parts of the house are most important right now and work on those. You're still building the house to spec, it's just a more fluid and interactive method of building it.</p>
http://stackoverflow.com/questions/230662/insert-default-value-when-parameter-is-null/230771#2307716Answer by Dave DuPlantis for Insert default value when parameter is nullDave DuPlantis2008-10-23T18:04:24Z2008-10-23T18:04:24Z<p>Try an if statement ... </p>
<pre><code>if @value is null
insert into t (value) values (default)
else
insert into t (value) values (@value)
</code></pre>
http://stackoverflow.com/questions/230642/create-trigger-is-taking-more-than-30-minutes-on-sql-server-2005/230719#2307190Answer by Dave DuPlantis for CREATE TRIGGER is taking more than 30 minutes on SQL Server 2005Dave DuPlantis2008-10-23T17:50:42Z2008-10-23T17:50:42Z<p>That's odd. An <code>AFTER UPDATE</code> trigger shouldn't need to check existing rows in the table. I suppose it's possible that you aren't able to obtain a lock on the table to add the trigger.</p>
<p>You might try creating a trigger that basically does nothing. If you can't create that, then it's a locking issue. If you can, then you could disable that trigger, add your intended code to the body, and enable it. (I do not believe you can disable a trigger during creation.)</p>
http://stackoverflow.com/questions/230527/telling-bugs-and-features-apart/230647#2306472Answer by Dave DuPlantis for Telling bugs and features apart?Dave DuPlantis2008-10-23T17:30:38Z2008-10-23T17:30:38Z<p>As much as I hate to say it, I think some of the distinction between bugs and features is not drawn by the developer. Maybe the requirements were clear, maybe the design was clear, maybe the implementation was clear, but if the result is not what the customers want, to them, it's a bug. (I suppose you could say in that case, the bug is in the requirement ... even if the customer signed off on it.)</p>
<p>As others have pointed out, if your system is documented well, you shouldn't have to decide; the documentation will tell you. I have worked on systems that had very poor documentation, and sometimes it was really difficult to tell the difference between "by design" and "by accident", particularly if the "bug" was difficult to reproduce. </p>
<p>Dependency can be a tricky issue. Unless you can demonstrate that current functionality is incorrect (returning the wrong value from a function or something like that), it may be difficult to fix an issue if it is old enough and has spread to enough people (like sk mentions).</p>
<p>I did see a number of situations where no one, including the original programmer, could remember the precise intent of a particular section of code ... it was surprising how often we were able to fix the problem without people complaining. Sometimes, if it seemed to be a usability issue, people not only didn't complain, but immediately praised the changes, almost as if they were hoping we'd fix it but didn't want to bring it up themselves. (Again, this is from a very poorly-documented system.)</p>
http://stackoverflow.com/questions/230241/does-ms-access2003-have-anything-comparable-to-stored-procedure-i-want-to-run/230283#2302830Answer by Dave DuPlantis for Does MS access(2003) have anything comparable to Stored procedure. I want to run a complex query in MS acceessDave DuPlantis2008-10-23T15:49:29Z2008-10-23T15:49:29Z<p>Well, you can use a Recordset object to loop through your query in VBA, concatenating field values based on whatever criteria you need.</p>
<p>If you want to return the results as strings, you'll be fine. If you want to return them as a query, that will be more complicated. You might have to create a temporary table and store the results in there so you can return them as a table or query.</p>
http://stackoverflow.com/questions/230138/sql-server-make-all-upper-case-to-proper-case-title-case/230187#2301872Answer by Dave DuPlantis for SQL Server: Make all UPPER case to Proper Case/Title CaseDave DuPlantis2008-10-23T15:29:27Z2008-10-23T15:29:27Z<p>Just keep in mind that properly changing upper-case text to proper-case text may require manual corrections in some, well, cases. With names, for example: I do not appreciate applications that misspell my name. </p>
http://stackoverflow.com/questions/228518/palindrome-golf/229562#2295620Answer by Dave DuPlantis for Palindrome GolfDave DuPlantis2008-10-23T12:40:32Z2008-10-23T12:40:32Z<p>CFScript, 39 characters: </p>
<pre><code>function y(x){return(x is reverse(x));}
</code></pre>
<p>I was never very good at golf.</p>
http://stackoverflow.com/questions/507092/what-do-you-use-to-edit-and-develop-classic-asp/507096#507096Comment by Dave DuPlantis on What do you use to edit and develop Classic ASPDave DuPlantis2009-10-30T16:58:29Z2009-10-30T16:58:29ZI'm actually using Dreamweaver right now on some classic ASP I'm doing, which is somewhat ironic because a) I'm primarily a ColdFusion developer and b) I've never used Dreamweaver before, I prefer Eclipse with the CFEclipse plugin.http://stackoverflow.com/questions/703687/vb-script-math-function/703707#703707Comment by Dave DuPlantis on VB script math functionDave DuPlantis2009-10-30T16:53:52Z2009-10-30T16:53:52ZNo, doubles have a decimal part. <code>CDbl()</code> would leave them as 33.3. <code>CInt()</code> would convert them to 33. http://stackoverflow.com/questions/920548/replace-words-from-querystring-with-regular-expressions/920626#920626Comment by Dave DuPlantis on Replace words from querystring with Regular ExpressionsDave DuPlantis2009-10-30T16:48:38Z2009-10-30T16:48:38ZBut in VBScript, it should work the same way: the object is still a <code>RegExp</code>, you set the <code>Pattern</code> attribute the same way, and the <code>Replace()</code> method still takes two arguments, the original string and the value to substitute for the matched pattern. (Although in the example above, queryString hasn't yet been set; it would need to be set to the queryString you pulled off the URL farther up in the code.)http://stackoverflow.com/questions/1416979/part-of-the-vbscript-code-gets-trashed-with-hyphensComment by Dave DuPlantis on part of the vbscript code gets trashed with hyphensDave DuPlantis2009-10-30T16:30:48Z2009-10-30T16:30:48Zbut it runs fine in pretty much every browser. I don't think it's a support issue.http://stackoverflow.com/questions/1524101/classic-asp-sql-injection/1614488#1614488Comment by Dave DuPlantis on Classic ASP SQL InjectionDave DuPlantis2009-10-30T16:01:26Z2009-10-30T16:01:26ZI don't think it takes that long to add a bunch of <code>oCmd.Parameters.Append oCmd.CreateParameter(...)</code> statements to your code, and honestly in situations like this I think you are better off focusing on quality rather than speed, particularly if you don't have time to do the work twice.http://stackoverflow.com/questions/1532420/classic-asp-sql-server-and-character-encodings/1535949#1535949Comment by Dave DuPlantis on Classic ASP, SQL Server and character encodingsDave DuPlantis2009-10-30T15:56:15Z2009-10-30T15:56:15ZUnicode is more than just UTF-16; UTF-16 is one of many Unicode encodings. http://stackoverflow.com/questions/1649429/is-there-any-mistake-in-this-java-code/1649454#1649454Comment by Dave DuPlantis on Is there any mistake in this Java code?Dave DuPlantis2009-10-30T15:47:30Z2009-10-30T15:47:30ZI think this is a good point, and it may extend to the business world as well. Sometimes you may be asked to do something in a way that is not how you would otherwise do it, perhaps even in a way that seems wrong ... it's good to understand as best you can why you need to do it that way, so then you know how to keep your boss/coworker/instructor pleased and also know how you'd do it if they weren't involved.http://stackoverflow.com/questions/725875/anti-xss-and-classic-asp/725900#725900Comment by Dave DuPlantis on Anti XSS and Classic ASP.Dave DuPlantis2009-10-28T18:37:16Z2009-10-28T18:37:16ZAnd if you do have to display rich text (legacy system, sigh), writing a cleanup function to use multiple regular expressions is at least a step in the right direction.http://stackoverflow.com/questions/406294/left-join-and-left-outer-join-in-sql-server/406336#406336Comment by Dave DuPlantis on Left join and Left outer join in SQL ServerDave DuPlantis2009-10-05T18:16:18Z2009-10-05T18:16:18ZtableA FULL OUTER JOIN tableB will give you three types of records: all records in tableA with no matching record in tableB, all records in tableB with no matching record in tableA, and all records in tableA with a matching record in tableB.http://stackoverflow.com/questions/1436476/internship-in-coldfusion/1436486#1436486Comment by Dave DuPlantis on Internship in ColdFusion?Dave DuPlantis2009-10-05T15:02:18Z2009-10-05T15:02:18ZI think ColdFusion programmers are outspoken about it by nature because most people who ask us about it preface the question with some form of "I know it's dying, but ...". :) That aside, I agree with your answer no matter what the language. Knowledge of any given language is an asset, particularly in a career where you can't exactly pick one language and run with it until you retire ... and learning new languages will help you learn other new languages ...http://stackoverflow.com/questions/778195/ie6-7-and-classname-js-html/778665#778665Comment by Dave DuPlantis on IE6/7 And ClassName (JS/HTML)Dave DuPlantis2009-10-05T14:30:36Z2009-10-05T14:30:36ZFWIW, <a href="http://www.davidjrush.com/blog/2009/05/javascript-changing-class-names-to-alter-css/" rel="nofollow">davidjrush.com/blog/2009/…</a> mentions that IE occasionally decides not to execute setAttribute( "class", value ) correctly, so it may be necessary to call setAttribute( "className", value ) as well. (So four lines of code here instead of two.)http://stackoverflow.com/questions/26137/vbscript-asp-classic/26336#26336Comment by Dave DuPlantis on VBScript/ASP ClassicDave DuPlantis2009-10-01T18:17:49Z2009-10-01T18:17:49ZRe 3: sure it is, and there are plenty of resources that provide help (like SO). You may not have used it in years, but it doesn't mean other people aren't still using it, regardless of the wisdom of doing so. (Benefit of some contract work: in and out quickly. Challenge of some contract work: needing to provide a solution within the existing framework.)http://stackoverflow.com/questions/244918/internet-explorer-7-ajax-links-only-load-once/244923#244923Comment by Dave DuPlantis on Internet Explorer 7 Ajax links only load onceDave DuPlantis2009-05-21T18:28:30Z2009-05-21T18:28:30ZAnd in ColdFusion you can use the cfheader tag to pass them using name and value attributes. For some reason I had to add no-store to Cache-Control as well, and of course in IE 8 even that didn't work, but at least it did in IE 7 and Firefox 3.http://stackoverflow.com/questions/290475/read-only-access-data-source/290529#290529Comment by Dave DuPlantis on Read-only Access data sourceDave DuPlantis2008-11-14T16:02:21Z2008-11-14T16:02:21ZYes, Access does have an Upsizing Wizard ... it's tolerable, but you'd still have to fix up the tables yourself if it were feasible to do this.http://stackoverflow.com/questions/290304/is-writing-server-log-files-to-a-database-a-good-idea/290340#290340Comment by Dave DuPlantis on Is writing server log files to a database a good idea?Dave DuPlantis2008-11-14T15:45:25Z2008-11-14T15:45:25ZIn terms of diagnosing today's issues, you'll face a challenge like that no matter how you handle current logs (tail/grep/etc or Windows alternatives so as not to interfere with logging). Even for a problem like that, you might want to look at historical data to see if it happened before.