User Dewayne Christensen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T02:51:01Zhttp://stackoverflow.com/feeds/user/23876http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1836151/is-it-possible-to-retrieve-the-raw-sql-which-returned-an-error-in-sql-server/1836449#18364491Answer by Dewayne Christensen for Is it possible to retrieve the raw SQL which returned an error in SQL Server?Dewayne Christensen2009-12-02T22:53:29Z2009-12-02T22:53:29Z<p>If you're using an ODBC data source, you can use the Tracing tab in the ODBC control panel to turn on tracing, which, if I remember right, records all the traffic to that data source. Although, unless you can reliably force the error to occur on demand, you're going to wind up with one humongous log file to wade through.</p>
<p>So probably not much different than recording all the traffic with Profiler.</p>
<p>Unless you don't have permissions to run profiler against the server.</p>
http://stackoverflow.com/questions/1836237/late-binding-an-object-as-in-vba/1836357#18363570Answer by Dewayne Christensen for Late binding an Object as in VBA Dewayne Christensen2009-12-02T22:35:33Z2009-12-02T22:35:33Z<p>Where did you come up with that progid (ActiveDocument.VBProject)? Generally progid's are of the form AppName.ObjectName, as in Excel.Sheet or Word.Document. IIRC, VB6 doesn't support OLE Automation itself; rather, it supports <em>creating</em> OLE Automation servers and clients.</p>
http://stackoverflow.com/questions/1835218/can-you-declare-a-variable-in-asp-classic-like-this/1835317#18353170Answer by Dewayne Christensen for Can you declare a variable in ASP classic like this?Dewayne Christensen2009-12-02T19:44:26Z2009-12-02T19:44:26Z<p>No. One language's syntax isn't going to work in a different language. You can, however, assign a string literal to the variable:</p>
<pre>
<code>
Dim myVar
myVar = _
"<html xmlns=""http://www.w3.org/1999/xhtml"" lang=""en"" xml:lang=""en"">" & vbCrLf & _
"<head>" & vbCrLf & _
" <title>test</title>" & vbCrLf & _
"</head>" & vbCrLf & _
"" & vbCrLf & _
"<BODY>" & vbCrLf
</code>
</pre>
http://stackoverflow.com/questions/1835004/where-to-find-the-objective-c-runtime-and-headers/1835208#18352080Answer by Dewayne Christensen for Where to find the Objective-C Runtime and Headers?Dewayne Christensen2009-12-02T19:22:30Z2009-12-02T19:28:16Z<p>Not sure what "documentation" you're looking at, but the header files for the system frameworks can be found under their containing frameworks at /System/Library/Frameworks. So NSObject.h resides at /System/Library/Frameworks/Foundation.framework/NSObject.h.</p>
<p>Edit: I just checked both my machines (Tiger and Snow Leopard), and they both have /usr/include/objc/ also. So not sure why you don't.</p>
http://stackoverflow.com/questions/1835097/quick-left-join-question/1835133#18351332Answer by Dewayne Christensen for Quick Left Join QuestionDewayne Christensen2009-12-02T19:10:05Z2009-12-02T19:10:05Z<pre>
SELECT f.id, f.format_type, h.newspaper_id
FROM newspapers_formats f
LEFT JOIN newspapers_formats_held h ON (f.id = h.format_id)
WHERE h.newspaper_id = 3
OR h.format_id IS NULL
</pre>
http://stackoverflow.com/questions/1831964/finding-whether-an-exe-is-dynamically-linked-windows/1833665#18336650Answer by Dewayne Christensen for finding whether an exe is dynamically linked (windows)Dewayne Christensen2009-12-02T15:33:28Z2009-12-02T15:33:28Z<p>All Windows apps are dynamically linked to the Windows API. If you need to determine how a specific non-Windows library (like libxml or somesuch) was linked, Visual Studio includes a program called DEPENDS.EXE that will show all the DLL's an exe is linked against. If the library in question isn't listed, then it's either linked statically, or it's not linked at all.</p>
http://stackoverflow.com/questions/1832262/net-winforms-startup-crash/1833578#18335780Answer by Dewayne Christensen for .NET WinForms startup crashDewayne Christensen2009-12-02T15:20:44Z2009-12-02T15:20:44Z<p>I've used the approach detailed at <a href="http://www.wintellect.com/CS/blogs/jclark/archive/2005/03/30/simple-main.aspx" rel="nofollow">http://www.wintellect.com/CS/blogs/jclark/archive/2005/03/30/simple-main.aspx</a> with good success.</p>
<p>(You'll have to ignore about 3000 lines of comment spam, though.)</p>
http://stackoverflow.com/questions/1828905/error-with-the-using-statement-and-lazy-initialized-property/1829249#18292491Answer by Dewayne Christensen for Error with the Using Statement and Lazy Initialized PropertyDewayne Christensen2009-12-01T22:02:15Z2009-12-01T22:02:15Z<p>You failed to mention a key piece of information: It succeeds the first time Load() is called, but then fails forever after.</p>
<p>When using Using, Dispose() is called on the used variable when the Using block exits. So in your scenario:</p>
<ol>
<li>Load() gets called</li>
<li>The Using statement calls the Connection property's Get</li>
<li>_Connection gets set to a new SqlConnection and returned</li>
<li>The returned connection gets opened and used normally</li>
<li>The Using block exits, calling Dispose() on the connection</li>
</ol>
<p>At this point, the SqlConnection object still exists, and is still pointed to by _Connection. It's no longer in a usable state though, since it's been Dispose()d. When the second call to Load() comes in:</p>
<ol>
<li>Load() gets called</li>
<li>The Using statement calls the Connection property's Get</li>
<li>_Connection is still pointing to a (useless) SqlConnection object, therefore it's not Nothing, and doesn't get set to a new SqlConnection object</li>
<li>The (useless) connection gets returned</li>
<li>Open() gets called on the connection--which is in an unusable state--and triggers the InvalidOperationException</li>
</ol>
<p>You're mixing conflicting approaches to connection management. Keeping the connection object around as a member of the class implies that you want to keep the connection alive for the life of the SomeEntity object, but using Using implies that you want to create and destroy the connection on the fly with each usage.</p>
http://stackoverflow.com/questions/1828992/debugging-asp-stored-procedure-calls/1829096#18290960Answer by Dewayne Christensen for Debugging ASP Stored Procedure CallsDewayne Christensen2009-12-01T21:35:52Z2009-12-01T21:35:52Z<p>The Connection object has an Errors collection you can spin through:</p>
<pre>
For Each errorObject In MM_SkateSeason_Connect.Errors
Debug.Print "Description :"; errorObject.Description
Debug.Print "Number:"; errorObject.Number
Next
</pre>
http://stackoverflow.com/questions/1826224/example-of-a-database-table-design-with-a-questionable-repeating-group/1827141#18271410Answer by Dewayne Christensen for Example of a database table design with a questionable repeating groupDewayne Christensen2009-12-01T16:01:20Z2009-12-01T16:01:20Z<p>Just having two foreign keys pointing to the same table isn't by default a "violation." You might have a Person table with FatherID and MotherID fields both pointing back to the Person table. This isn't a repeating group, as they're semantically different attributes. Your first claim—as written and free of any other context—is false.</p>
http://stackoverflow.com/questions/1826273/large-table-with-no-rows/1826985#18269851Answer by Dewayne Christensen for Large table with no rows?Dewayne Christensen2009-12-01T15:37:53Z2009-12-01T15:37:53Z<p>Free space isn't removed from the database as records are deleted. Instead, it's left there and reused later as new records are added.</p>
<p>You can shrink a database manually, or set it to auto-shrink periodically.</p>
<p><strong>Manually shrinking:</strong></p>
<ul>
<li>With a keyboard: from a query window, use DBCC SHRINKDATABASE dbname.</li>
<li>With a mouse: in Management Studio, right-click the database, and choose Tasks->Shrink->Database.</li>
</ul>
<p><strong>Auto shrink:</strong></p>
<ul>
<li>With a keyboard: from a query window, ALTER DATABASE dbname SET AUTO_SHRINK ON.</li>
<li>With a mouse: in Management Studio, right-click the database, choose Properties, choose Options, and set Auto Shrink to True.</li>
</ul>
<p>A quick glance through the documentation only says that auto-shrinks occur "periodically." I didn't notice any mention of what that period is.</p>
<p>When you shrink a database, by default, only empty pages at the end of the file are removed. So if your database has a large number of empty pages followed by a single used page, it won't shrink much. When shrinking it via the GUI, there is an option in the shrink dialog to "Reorganize files before releasing unused space." Checking this option will cause the used pages to be moved to the front of the file before truncating the trailing empty space, but will also take longer.</p>
http://stackoverflow.com/questions/1800238/how-to-delete-a-contact-from-address-book-in-iphone-using-objective-c/1800394#18003940Answer by Dewayne Christensen for How to delete a contact from address book in iPhone using objective-c ?Dewayne Christensen2009-11-25T22:34:12Z2009-11-25T22:34:12Z<p>ABAddressBookRemoveRecord</p>
<p><a href="http://developer.apple.com/iphone/library/documentation/AddressBook/Reference/ABAddressBookRef%5FiPhoneOS/Reference/reference.html#//apple%5Fref/c/func/ABAddressBookRemoveRecord" rel="nofollow">http://developer.apple.com/iphone/library/documentation/AddressBook/Reference/ABAddressBookRef_iPhoneOS/Reference/reference.html#//apple_ref/c/func/ABAddressBookRemoveRecord</a></p>
http://stackoverflow.com/questions/1798741/subversion-command-line-commit-does-nothing/1798819#17988191Answer by Dewayne Christensen for Subversion command line commit does nothingDewayne Christensen2009-11-25T18:00:54Z2009-11-25T18:00:54Z<p>Do "svn st myFile.txt". If the first column has a ? in it, then the file isn't under source control and you need to "svn add myFile.txt". If the first column is blank, then there aren't any changes to commit. If the first column is something else, then "svn help st" will give you the meaning of the other possible flags.</p>
http://stackoverflow.com/questions/1797707/how-to-find-files-in-source-control-but-not-in-a-visual-studio-solution/1797864#17978642Answer by Dewayne Christensen for How to find files in source control but not in a Visual Studio solution?Dewayne Christensen2009-11-25T15:51:22Z2009-11-25T15:51:22Z<p>We haven't upgraded to VS2008 yet, so I'm not sure how much of this applies, but anyway:</p>
<p>Approach 1: On the Solution Explorer toolbar, click "Show All Files." Then highlight the root node of the solution and hit "*" on the numeric keypad to fully expand the tree. The icons that are just outlines are files that aren't part of the solution. From those, you have to determine by hand which are unnecessarily in svn.</p>
<p>Approach 2: Do a "svn export" to create a secondary copy of the project somewhere. Open the new copy with VS and then choose File->Source Control->Change Source Control. In the resulting window, if any projects show as "Connected," highlight them and click "Disconnect" on the toolbar. Close the Source Control window and then, in the Solution Explorer, with "Show All Files" turned <em>OFF</em>, delete everything. The files remaining on disk are the extras your project is no longer using.</p>
<p>With both approaches, it would be smart to make a separate backup copy of the project before doing anything, just in case you nail one too many files.</p>
http://stackoverflow.com/questions/1695143/how-to-get-the-resource-for-nib-file-on-mac-osx/1758048#17580482Answer by Dewayne Christensen for How to get the resource for NIB file on MAC OSXDewayne Christensen2009-11-18T18:23:11Z2009-11-18T18:23:11Z<p>If you're trying to localize the NIB file, you can use <code>ibtool</code> from a command shell to pull out the strings:</p>
<p><code>
ibtool --export-strings-file <file>.strings <file>.nib
</code></p>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/154320#15432017Answer by Dewayne Christensen for What are those little Xcode tips & tricks you wish you knew about 2 years ago?Dewayne Christensen2008-09-30T18:25:53Z2008-09-30T18:25:53Z<p>You can have Xcode run the preprocessor over your Info.plist file:</p>
<pre>
<key>CFBundleShortVersionString</key>
#ifdef DEBUG
<string>1.0 (debug)</string>
#else
<string>1.0</string>
#endif
</pre>
<p>See <a href="http://developer.apple.com/technotes/tn2007/tn2175.html" rel="nofollow">http://developer.apple.com/technotes/tn2007/tn2175.html</a> for details.</p>
http://stackoverflow.com/questions/1836237/late-binding-an-object-as-in-vbaComment by Dewayne Christensen on Late binding an Object as in VBA Dewayne Christensen2009-12-02T23:31:23Z2009-12-02T23:31:23ZThe link you posted doesn't go anywhere. Does the early binding version work for you? If not, then the problem's not in your code, it's in your system.
http://stackoverflow.com/questions/1836198/override-a-file-checkout-in-visual-studio-2003Comment by Dewayne Christensen on Override a File Checkout in Visual Studio 2003Dewayne Christensen2009-12-02T23:01:40Z2009-12-02T23:01:40ZWhat do you mean by "override?" Do you really mean "overwrite?" Or are you wanting to undo the checkout? Or are you wanting to check it out to two different locations?
http://stackoverflow.com/questions/1836218/add-entire-folder-to-sourcesafeComment by Dewayne Christensen on add entire folder to sourcesafe?Dewayne Christensen2009-12-02T22:28:08Z2009-12-02T22:28:08ZIt'll be just as safe there. :)http://stackoverflow.com/questions/1835218/can-you-declare-a-variable-in-asp-classic-like-this/1835317#1835317Comment by Dewayne Christensen on Can you declare a variable in ASP classic like this?Dewayne Christensen2009-12-02T19:47:28Z2009-12-02T19:47:28ZThat's why you get paid the big bucks.
http://stackoverflow.com/questions/1835218/can-you-declare-a-variable-in-asp-classic-like-this/1835317#1835317Comment by Dewayne Christensen on Can you declare a variable in ASP classic like this?Dewayne Christensen2009-12-02T19:46:26Z2009-12-02T19:46:26ZI don't remember if vbCrLf is predefined in class ASP or not. If not, it's "vbCrLf = chr(13) & chr(10)".
http://stackoverflow.com/questions/1833227/long-long-int-in-objc/1833269#1833269Comment by Dewayne Christensen on long long int in ObjCDewayne Christensen2009-12-02T14:49:51Z2009-12-02T14:49:51Z>I suspect NSURLResponseUnknownLength is -1.
Yep. See the bottom of <a href="http://developer.apple.com/mac/library/documentation/cocoa/Reference/Foundation/Classes/NSURLResponse_Class/Reference/Reference.html" rel="nofollow">developer.apple.com/mac/library/…</a>.
http://stackoverflow.com/questions/1833246/is-it-possible-to-get-the-value-for-a-key-in-a-hashtable-without-iteration/1833259#1833259Comment by Dewayne Christensen on Is it possible to get the value for a key in a Hashtable without iteration?Dewayne Christensen2009-12-02T14:42:50Z2009-12-02T14:42:50ZAnd depending which hash class you're using (System.Collections.Generic.Dictionary) you can use TryGetValue() to avoid an exception if the key doesn't exist.
http://stackoverflow.com/questions/1826224/example-of-a-database-table-design-with-a-questionable-repeating-group/1827141#1827141Comment by Dewayne Christensen on Example of a database table design with a questionable repeating groupDewayne Christensen2009-12-02T14:36:28Z2009-12-02T14:36:28ZNormalization and naming are completely separate issues. You can name all your fields Field1, Field2, Field3, and still be in Nth-normal form.
In the Person example, father and mother are semantically different things, therefore not a repeating group (as long as we stick to blood relatives). If we add siblings into the mix, however, then the story changes. Having fields Sibling1ID, Sibling2ID, ... constitutes a repeating group.
Naming conventions are up to you and your team. If you'd rather use FatherPersonID and MotherPersonID that's your choice, but that doesn't affect normalization.
http://stackoverflow.com/questions/1828825/sql-doesnt-return-a-value-when-the-columns-are-multiplied/1828843#1828843Comment by Dewayne Christensen on SQL-Doesn't return a value when the columns are multiplied.Dewayne Christensen2009-12-01T22:10:59Z2009-12-01T22:10:59ZUse COALESCE() instead of ISNULL(). It's ANSI standard, so works with other vendors as well. Syntax and semantics are identical, so there's no reason to keep using ISNULL().
http://stackoverflow.com/questions/1828905/error-with-the-using-statement-and-lazy-initialized-property/1829004#1829004Comment by Dewayne Christensen on Error with the Using Statement and Lazy Initialized PropertyDewayne Christensen2009-12-01T22:04:13Z2009-12-01T22:04:13ZActually, it is. It refers to the protected Connection property of the SomeEntity class.
http://stackoverflow.com/questions/1826501/best-possible-algorithm-to-check-if-two-linked-lists-are-merging-at-any-point-if/1826588#1826588Comment by Dewayne Christensen on Best Possible algorithm to check if two linked lists are merging at any point? If so, where?Dewayne Christensen2009-12-01T14:53:22Z2009-12-01T14:53:22ZActually, a standard doubly-linked list wouldn't work, because you'd need two back pointers to handle the merge point.
http://stackoverflow.com/questions/48997/what-programming-language-is-most-popular-todayComment by Dewayne Christensen on What programming language is most popular today?Dewayne Christensen2009-11-27T20:35:06Z2009-11-27T20:35:06ZI'd hardly use the SO tag count as an indicator of <i>popularity</i>. Considering this is a Q&A site, it's probably a better indicator of "Which language is the most confusing?"
http://stackoverflow.com/questions/1810277/my-http-server-in-c-is-not-sending-all-files-back-correctly/1810297#1810297Comment by Dewayne Christensen on My http server in c++ is not sending all files back correctlyDewayne Christensen2009-11-27T20:14:11Z2009-11-27T20:14:11Z<a href="http://lmgtfy.com/?q=read(2)&l=1" rel="nofollow">lmgtfy.com/?q=read(2)&l=1</a>