User pcampbell - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T06:24:28Zhttp://stackoverflow.com/feeds/user/23199http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1905066/sql-datatype-choice-for-values-1-0-and-11SQL: Datatype choice for values -1, 0 and 1pcampbell2009-12-15T03:54:17Z2009-12-15T05:17:14Z
<p>Consider a table whose job is to store a rating of an object. The column of interest here is the one called <strong>RATING</strong>. The valid range of values to store is:</p>
<ul>
<li>1</li>
<li>0</li>
<li>-1</li>
</ul>
<p>The first thought was to store as a <strike>tinyint</strike> <a href="http://msdn.microsoft.com/en-us/library/ms187745.aspx" rel="nofollow"><code>smallint</code></a>. This would store <strike>only one byte</strike> two bytes per row. Given the <strike>tinyint's range of 0 to 255</strike> smallint's range of -32768 to 32767, would it be suitable here? Is there another datatype more suitable? The space taken is trivial for the expected size of the table & database. The user interface will be responsible for ensuring that those three values will be chosen by way of an enum.</p>
<p><strong>Question</strong>: can you suggest a smaller storage size or any clever setups to store one of these three values without sacrificing any ease-of-understanding? </p>
<p>Other considerations:</p>
<ul>
<li>storage space isn't a terribly large concern</li>
<li>this value will be summed to get a total rating</li>
<li>this may be a case of micro-optimization</li>
<li>SQL Server 2008</li>
</ul>
http://stackoverflow.com/questions/1895462/github-and-visual-studio1GitHub and Visual Studiopcampbell2009-12-13T03:19:54Z2009-12-14T23:32:46Z
<p>What's the most painless way for the Visual Studio developer to start using GitHub? Ideally the answer would involve a Visual Studio plugin, or some other integration app?</p>
<ul>
<li>What solutions are available today to view/update GitHub repositories? </li>
<li>Can you rely or expect the same functionality as compared to other VS integrated source control plugins? </li>
<li>What processes would you change, as a user, when approaching this use-case from the TFS or <a href="http://www.sourcegear.com/vault/" rel="nofollow">SourecGear Vault</a> scenarios?</li>
<li>The current use case is in single-developer mode, but certainly this question is open to single dev and teams of any size. </li>
<li>Any tools that are Visual Studio plug-ins would be considered 'top of the list'</li>
</ul>
http://stackoverflow.com/questions/1904049/in-f-what-does-the-operator-mean/1904063#190406319Answer by pcampbell for In F# what does the >> operator mean?pcampbell2009-12-14T22:49:00Z2009-12-14T22:49:00Z<p>It's the function composition operator.</p>
<p>More info on <a href="http://blogs.msdn.com/chrsmith/archive/2008/06/14/function-composition.aspx" rel="nofollow">Chris Smith's blogpost</a>.</p>
<blockquote>
<p>Introducing the Function Composition
operator (>>):</p>
<p><code>let inline (>>) f g x = g(f x)</code></p>
<p>Which reads as: given two functions, f
and g, and a value, x, compute the
result of f of x and pass that result
to g. The interesting thing here is
that you can curry the (>>) function
and only pass in parameters f and g,
the result is a function which takes a
single parameter and produces the
result g ( f ( x ) ).</p>
<p>Here's a quick example of composing a
function out of smaller ones:</p>
</blockquote>
<pre><code>let negate x = x * -1
let square x = x * x
let print x = printfn "The number is: %d" x
let square_negate_then_print = square >> negate >> print
asserdo square_negate_then_print 2
</code></pre>
<blockquote>
<p>When executed prints ‘-4’.</p>
</blockquote>
http://stackoverflow.com/questions/1897317/asp-net-website-server-side-docx-to-pdf-conversion/1897361#18973611Answer by pcampbell for ASP.NET website, server-side DOCX to PDF conversionpcampbell2009-12-13T18:59:16Z2009-12-13T18:59:16Z<p>There are a few choices here:</p>
<ul>
<li><p>build a COM interop class that will perform read and 'Save As' functions on your .docx. The MSDN link you gave doesn't require to be run client-side, but rather have the Office assemblies in the GAC or in your ASP.NET's bin directory.</p></li>
<li><p>buy a third party component to do the work for you. <a href="http://www.verydoc.com/doc-to-any/docx-to-pdf.html" rel="nofollow">Here's just one example with no guarantees</a>.</p></li>
</ul>
http://stackoverflow.com/questions/1894753/the-difference-between-namespaces-in-visual-basic-net-vs-in-c-and-how-to-deal-wi/1894826#18948261Answer by pcampbell for The difference between namespaces in Visual Basic.NET vs in C# and how to deal with thempcampbell2009-12-12T21:57:02Z2009-12-12T21:57:02Z<p>Given that you have to perform different code-gen tasks for either language anyway, it'd be just another drop in the bucket of differences for generating that code.</p>
<p>Coding in the VB-specific trick of inserting the default namespace isn't too big an issue, on first glance, compared to the other implementation details.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/1894759/is-it-possible-to-render-an-html-in-a-word-document/1894801#18948010Answer by pcampbell for Is it possible to render an HTML in a word document pcampbell2009-12-12T21:43:13Z2009-12-12T21:43:13Z<p>Have you considered formatting and saving your HTML in a standards-compliant way? This will help:</p>
<ul>
<li>promote reuse of those documents in other programs/consumers</li>
<li>the developer by not having to twist/mangle their HTML output to conform to some output by Office products. I'm thinking here that you're anticipating writing HTML that would mimick Word's HTML output.</li>
</ul>
<p>Know also that <a href="http://msdn.microsoft.com/en-us/library/aa338201.aspx" rel="nofollow">Office 2007 products are fully capable of rendering CSS markup</a>.</p>
<p>I am not suggesting that Outlook and Word do not read or deal in non-standard HTML, but rather, consider that they are ABLE to read standard HTML.</p>
<p><strong>So the answer is: don't worry about it.</strong> All the Office products will read/consume:</p>
<ul>
<li><a href="http://www.w3schools.com/HTML/html%5Fquick.asp" rel="nofollow">HTML 4</a></li>
<li><a href="http://en.wikipedia.org/wiki/XHTML" rel="nofollow">XHTML</a></li>
<li>XML documents</li>
<li>most everything else you throw at it.</li>
</ul>
http://stackoverflow.com/questions/1882555/extract-name-and-prename-from-email-address/1882627#18826272Answer by pcampbell for Extract name and prename from email address?pcampbell2009-12-10T17:30:41Z2009-12-10T18:58:24Z<p>You can use an <code>UPDATE</code> statement as follows. </p>
<pre><code>--relies on one and only one dot in the email account!
UPDATE Customer
SET PreName = LEFT(Email, CHARINDEX('.',Email)-1) --FirstName
,Name = SUBSTRING(Email,CHARINDEX('.',Email)+1, CHARINDEX('@',Email)-CHARINDEX('.',Email)-1)
</code></pre>
<p>To test this solution, try with a single string as a test.</p>
<pre><code>--test it out with this script!
DECLARE @Addr varchar(100)
SELECT @Addr = 'humpty.dumpty@here.com'
DECLARE @DotAt int, @At int
SELECT @DotAT = CHARINDEX('.',@Addr)
,@At = CHARINDEX('@',@Addr)
SELECT LEFT(@Addr, @DotAt-1), SUBSTRING(@Addr,@DotAt+1,@At-@DotAt-1)
</code></pre>
http://stackoverflow.com/questions/1882830/odd-slow-behaviour-in-asp-net/1882843#18828431Answer by pcampbell for Odd (Slow) Behaviour in ASP.NETpcampbell2009-12-10T18:00:36Z2009-12-10T18:00:36Z<p>Are your .aspx pages defined as content pages for a Master page? Perhaps there is logic being executed in the Master.</p>
http://stackoverflow.com/questions/1882100/sql-search-multiple-fields-return-one/1882181#18821813Answer by pcampbell for SQL search multiple fields, return onepcampbell2009-12-10T16:22:25Z2009-12-10T16:22:25Z<p>How about converting or casting your integer to a varchar datatype?
Rather than converting your varchar search argument to an int to match the int column, convert your int column to a varchar.</p>
<p>Here's a simple example.</p>
<pre><code>DECLARE @Table TABLE
(
someInt int
)
INSERT INTO @Table (SomeInt)
SELECT 1234567 UNION ALL
SELECT 98765 UNION ALL
SELECT 24680 UNION ALL
SELECT 13579 UNION ALL
SELECT 963852 UNION ALL
SELECT 147258
SELECT *
FROM @Table
WHERE CAST(SomeInt AS varchar(10)) LIKE '1%'
---- Results
1234567
13579
147258
</code></pre>
http://stackoverflow.com/questions/1877519/is-it-ok-to-put-comments-about-bug-fixes-in-the-source-code/1877543#18775430Answer by pcampbell for Is it ok to put comments about bug fixes in the source code?pcampbell2009-12-09T23:04:13Z2009-12-09T23:04:13Z<p>My view is that comments should be relevant to the developer's intention, or highlights of 'why' surrounding the algorithm/method.</p>
<p>Comments shouldn't surround a fix-in-time.</p>
http://stackoverflow.com/questions/1862097/storing-images-in-db-networked-desktop-applications/1876254#18762546Answer by pcampbell for Storing Images in DB - Networked Desktop Applicationspcampbell2009-12-09T19:32:21Z2009-12-09T19:45:22Z<p>I'd suggest keeping those files on disk in the file system, rather than in the database. File system for files, databases for relational data, etc.</p>
<p><strong>Deliver by Web Service</strong> </p>
<p>Consider delivering those images to your desktop app by hosting a web service/app on that DB machine. That app's job it is to serve only images. Setup a web server on that machine with an ASP.NET application. Have an <code>.ashx</code> handle requests and stream the binary image. Something like this:</p>
<p><code>http://myserver/myapp/GetImage.ashx?CustomerID=123&ImageID=456</code></p>
<p><strong>Security</strong> </p>
<p>If intranet security is an issue, this would be the point where you could ensure that the user is authenticated and authorized for read access to the image. Audit trails could be implemented here as well.</p>
<p><strong>File System Security</strong> </p>
<p>Regarding security on those images, consider that NTFS gives you a lot of measures to ensure that only those who are authorized can read/delete/put files as required. The task then would be to define those roles and implement Windows security groups.</p>
<p><strong>Future Needs</strong> </p>
<p>This approach allows you to securely consume those images from anywhere on the intranet. Perhaps this app would be migrated to a web application at some point? Perhaps a feature request comes from the customer where a web solution is appropriate?</p>
<p>This might sound like overkill rather than reading a blob from the database, but it's great from a security perspective. Consider your customers' and patients' expectations on privacy and security.</p>
<pre><code><%@ WebHandler Language="C#" Class="Handler" %>
public class Handler : IHttpHandler {
public void ProcessRequest (HttpContext context)
{
//go to the DB and get the path for this ID.
string filePath = GetImagePath(context.Request.QueryString["ImageID"]);
//now you have the path on disk; read the file
byte[] imgBytes=GetBytesFromDisk(filePath);
// send back as byte[]
context.Response.BinaryWrite(imgBytes);
}
</code></pre>
http://stackoverflow.com/questions/1868918/asp-net-website/1869068#18690681Answer by pcampbell for asp.net websitepcampbell2009-12-08T18:52:31Z2009-12-08T18:52:31Z<p>Perhaps find any instances of hardcoded <code>http:</code> in the related code. Usually a postback will respect the protocol being used.</p>
http://stackoverflow.com/questions/1868303/developers-checking-in-non-conforming-code1Developers checking in non-conforming codepcampbell2009-12-08T16:54:21Z2009-12-08T17:03:36Z
<p>Consider a situation where a group of developers work independently(more or less) on projects. The dept. has a published standard to ensure code quality on issues like:</p>
<ul>
<li>no inline/embedded/dynamic SQL statements (hand coded by the developer)</li>
<li>naming conventions</li>
<li>more</li>
</ul>
<p><strong>Question</strong></p>
<p>How would you set about enforcing the code quality rules? Are there any code quality analyzers that might catch inline SQL statements? Are there any build-time or check-in tools that can help? (please note: mostly Microsoft environment).</p>
<p>This may be a case for code reviews. Any suggestions on how to review a project's architecture and implementation before publish to Production (or even Staging!). I realize code reviews is a whole set of questions in itself, but any higher level thoughts are appreciated!</p>
http://stackoverflow.com/questions/1862130/javascript-strip-out-non-numeric-characters-from-string1Javascript: strip out non-numeric characters from stringpcampbell2009-12-07T18:59:47Z2009-12-07T19:14:20Z
<p>Consider a non-DOM scenario where you'd want to remove all non-numeric characters from a string.</p>
<pre><code>var myString = 'abc123.8<blah>';
//desired output is 1238
</code></pre>
<p><strong>Question:</strong>
How would you achieve this in plain Javascript? Please remember this is a non-DOM scenario, so jQuery and other solutions involving browser and keypress events aren't suitable.</p>
http://stackoverflow.com/questions/1851837/sql-server-2000-triggers/1856079#18560790Answer by pcampbell for SQL Server 2000 Triggers pcampbell2009-12-06T18:04:54Z2009-12-06T18:04:54Z<p>Consider this delete trigger:</p>
<pre><code>CREATE TRIGGER trig_delCustomer
ON Customer --the table being deleted from
FOR DELETE
AS
DECLARE @isOnContract BIT
--insert all the effected rows (the ones being deleted) into this other table.
INSERT INTO
MyOtherTable (ID, CustomerName, Email, Phone)
SELECT
ID, [Name], Email, Phone
FROM Deleted
</code></pre>
http://stackoverflow.com/questions/1852860/login-control-error/1852989#18529891Answer by pcampbell for Login control - errorpcampbell2009-12-05T18:24:00Z2009-12-05T18:24:00Z<p>Have you also handled the <code>Authenticate</code> event?</p>
<pre><code><asp:Login id="Login1" runat="server"
OnAuthenticate="MyOnAuthenticate">
private void MyOnAuthenticate(object sender, AuthenticateEventArgs e)
{
bool isAuthenticated = false;
isAuthenticated = YourAuthenticationMethod(Login1.UserName, Login1.Password);
e.Authenticated = isAuthenticated;
}
private bool YourAuthenticationMethod(string UserName, string pwd)
{
// Insert code that implements a site-specific custom
// authentication method here.
}
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.login.authenticate.aspx" rel="nofollow">LoginControl's Authenticated event on MSDN</a></p>
http://stackoverflow.com/questions/947078/mirth-inbound-message-template-that-is-not-the-same-as-the-channel-source-type0Mirth: Inbound Message Template that is NOT the same as the channel source typepcampbell2009-06-03T20:35:41Z2009-12-04T22:19:52Z
<p>The problem is that the Inbound Message Template is expecting different type than I want to specify or work with. The requirement is to have a SINGLE channel convert HL7 v2 to v3, call a web service, then convert the SOAP resulting XML, and convert that to HL7 v2.x and send it back to the original caller. <strong>This must be done asynchronously</strong>.</p>
<p><strong>Setup:</strong>
Consider the situation in a Mirth channel:</p>
<ul>
<li>Source is LLP listener. Type is HL7 v2.x. The sender is the HCIS (Health Care Information System).</li>
<li>Source Transformer, not relevant to problem at hand.</li>
<li><p>4 Destinations (in order): </p>
<ul>
<li>Javascript Writer - calling into Code Templates to do some database work.</li>
<li>SOAP Sender - calling a web service which returns HL7 v3.</li>
<li>Javascript Writer - containing a handful of Transformers DB writer calling into Code Templates. <strong><em>The problem lies here.</em></strong></li>
<li>Javascript Writer - again calling into Code Templates. </li>
</ul></li>
<li><p>the PostProcessor generates a custom Acknowledgement to send back to the HCIS.</p></li>
</ul>
<p><strong>Problem:</strong>
The Inbound Message Template expects HL7 v2.x because it inherits the datatype from the Source. I need to map an HL7 v3 template to an Outbound Message Template. The Outbound Template is working fine, as it's not bound to anything. </p>
<pre><code> tmp['PID']['PID.5']['PID.5.1'] = msg['controlActProcess']['subject']['target']['identifiedPerson']['name']['family'].toString();
</code></pre>
<p>I have tested this setup in another channel with HL7 v3 as the incoming datatype, and it works perfectly.</p>
<p><strong>Question:</strong>
How can I force Mirth to recognize my Inbound Message Template as HL7 v3 instead of inheriting the channel's incoming data type?</p>
http://stackoverflow.com/questions/1847453/writing-code-in-markup/1848328#18483280Answer by pcampbell for Writing Code in MArkuppcampbell2009-12-04T17:03:44Z2009-12-04T17:03:44Z<p>Consider having a placeholder in your itemTemplate:</p>
<pre><code><ItemTemplate>
<asp:PlaceHolder ID="phAddress" runat="server" />
</ItemTemplate>
</code></pre>
<p>For your gridview, have an <code>OnRowDataBound</code> event where you can construct a new <code>asp:Label</code> or plain HTML. Use the <code>e.Row.DataItem</code> to find the address details that you need. </p>
<p>Then you can assign that label or HTML string to <code>phAddress</code>.</p>
<p><a href="http://stackoverflow.com/questions/1814148/asp-net-display-images-and-pdf-in-a-gridview/1814644#1814644">This related answer may help</a>.</p>
http://stackoverflow.com/questions/536870/is-there-a-tool-to-automate-stress-post-calls-to-my-site-for-testing/1842919#18429190Answer by pcampbell for Is there a tool to automate/stress POST calls to my site for testing?pcampbell2009-12-03T21:05:48Z2009-12-03T21:05:48Z<p>Have you seen <a href="http://crossbow.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=14770" rel="nofollow">CrossBow Web Stress Tester</a> over at CodePlex?</p>
<ul>
<li>supports get and post operations</li>
<li>you specify the number of threads, requests, waits, and timeouts</li>
<li>reads a txt file with name/value pairs for posting values</li>
</ul>
<p>You'd have to download & modify the source if you wanted to generate random data for your Post variables.</p>
http://stackoverflow.com/questions/1842228/how-to-write-this-linq-query/1842243#18422430Answer by pcampbell for How to write this linq query?pcampbell2009-12-03T19:17:55Z2009-12-03T19:17:55Z<p>I am not 100% clear on your entities and their relationships, but this will get you started.</p>
<p>It sounds like you're trying now to further query from your <code>resultSet</code> object. If wanting A and C, then it sounds like the FK would be null.</p>
<pre><code>var cEntities = resultSet.Where(e=>e.prevEntityID == null).ToList();
</code></pre>
http://stackoverflow.com/questions/1814148/asp-net-display-images-and-pdf-in-a-gridview/1814644#18146441Answer by pcampbell for ASP.NET - Display Images and pdf in a GridViewpcampbell2009-11-29T04:20:22Z2009-11-29T05:29:41Z<p>The reason for the error about <code>Invalid attempt to read when no data is present</code> is because the DataReader doesn't contain any records (no image for the given ID).
Consider changing your code to:</p>
<pre><code>SqlDataReader dReader = cmd.ExecuteReader();
if (dReader.HasRows)
{
while (dReader.Read())
{
context.Response.BinaryWrite((byte[])dReader["a_data"]);
}
dReader.Close();
}
</code></pre>
<p><strong>A few suggestions for improvement</strong></p>
<ul>
<li>try to predict when a row won't have an image</li>
<li>when you can detect on your ASP.NET page, perform the call to the .ashx page </li>
<li>when you can detect that you need to render the link to the PDF, show a nice static pdf image and its link will be the URL.</li>
</ul>
<p>Consider checking, where possible, that the given Assessment has the image or PDF required. Perhaps add a where clause to determine, somehow, whether this record needs to display the PDF or image scenario.</p>
<p>May I suggest also that you convert your SQL statements into a stored procedure, as above, and modify your SqlDataSource as such:
<pre><code>CREATE PROC ListAssessments
AS
SELECT [assessment_id]
, [a_data]
, [a_mime]
, CASE WHEN a_mime = 'PDF' THEN 1
ELSE 0
END AS IsPDF
FROM Assessments
</code></pre>
<p>Now on your Gridview, you can determine whether you want to render an image or a PDF link.</p>
<pre><code><asp:TemplateField HeaderText="Image">
<ItemTemplate>
<asp:PlaceHolder id="ph1" runat="server" />
</ItemTemplate>
</asp:TemplateField>
</code></pre>
<p>Setup your Gridview to have an ItemDataBound event that calls a new method that you can write.</p>
<pre><code><asp:GridView OnRowDataBound="ShowImageOrPdf"
</code></pre>
<p>In your code-behind, you can then determine which webcontrol to render in that placeholder.</p>
<pre><code>protected void ShowImageOrPdf(object sender, GridViewRowEventArgs e)
{
const string LINK = "handler.ashx?Id={0}&Type={1}";
GridView gv = (GridView)sender;
if (e.Row.RowType == DataControlRowType.DataRow)
{
string assessmentID = gv.DataKeys[e.Row.RowIndex].Value.ToString();
bool isPDF = (bool)e.Row.DataItem["IsPDF"];
HyperLink h = new HyperLink();
if (isPDF)
{
//render a link showing that it's a PDF.
h.NavigateUrl = string.Format(LINK, assessmentID, "PDF");
h.ImageUrl = "http://www.adobe.com/images/pdficon_large.gif";
h.Text = "View PDF";
}
else
{
//render a thumbnail with a link to the image
h.NavigateUrl = string.Format(LINK, assessmentID, "IMG");
//have the handler create a thumbnail somehow.
h.ImageUrl = string.Concat(h.NavigateUrl + "&Size=Small");
}
//write the link back to the placeholder.
e.Row.FindControl("ph1").Controls.Add(h);
}
}
</code></pre>
<p>Then in your <code>.ashx</code>, you'll have to read the querystring parameters to determine what to output: an image, a thumbnail image, or the PDF document stored in the database.</p>
http://stackoverflow.com/questions/1805600/sql-order-by-a-column-from-another-table/1806118#18061180Answer by pcampbell for SQL order by a column from another tablepcampbell2009-11-26T23:32:37Z2009-11-26T23:32:37Z<pre><code>SELECT
M.* ,
P.Name AS PersonName
FROM
Memberships AS m
INNER JOIN
People AS P ON P.PersonID = M.PersonID
WHERE
M.GroupID = 32
ORDER BY
PersonName
</code></pre>
http://stackoverflow.com/questions/1792469/use-javascript-e4x-to-selectively-rename-xml-tags/1792519#17925190Answer by pcampbell for Use Javascript E4X to selectively rename XML tagspcampbell2009-11-24T19:54:34Z2009-11-24T19:54:34Z<p>Consider adding then <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Operators/Special%5FOperators/delete%5FOperator" rel="nofollow">deleting</a> those nodes manually?</p>
<pre><code>//msg is your xml object
msg['Favorites']['GaryFaveColor'] = msg['Favorites']['JillFaveColour'];
msg['Favorites']['GaryFaveCandy'] = msg['Favorites']['JillFaveCandy'];
msg['Favorites']['GaryFaveFlower'] = msg['Favorites']['JillFaveFlower'];
//now del Jill
delete msg['Favorites']['JillFaveColour'];
delete msg['Favorites']['JillFaveCandy'];
delete msg['Favorites']['JillFaveFlower'];
</code></pre>
http://stackoverflow.com/questions/1548214/dependency-injection-in-nerddinner-actually-testing-your-repository-or-model5Dependency injection in NerdDinner - actually testing your repository or modelpcampbell2009-10-10T15:23:41Z2009-11-24T15:55:01Z
<p>Consider a beginner dealing with Dependency Injection. We're analyzing two relevant classes in NerdDinner.</p>
<p><strong>DinnerRepository</strong> from the application:
<img src="http://imgur.com/Lv0Uz.png" alt="Repo image"></p>
<p><strong>FakeDinnerRepository</strong> from the tests:
<img src="http://imgur.com/TVLV9.png" alt="Fakes image"></p>
<p>They implement different logic, which of course is necessary, as the key idea here is to implement the <code>IDinnerRepository</code>, and provide different implementations and private members.</p>
<p>I understand the test is for the controller, but I am concerned that there are two different implementations of the data access logic. Consider any project that uses any kind of ORM, ADO.NET, SubSonic, or whatever flavour of data access you like. Yes, you can setup your fake repository to match the real repo. </p>
<p>My worry is that over time, implementation details in the real repo change. Perhaps a typo slips in, or some other important implementation detail changes in the <em>query</em>. This leads to a potential mismatch of the logic in the Model between the fake and the real repo. The worry is that the implementation of the real repo and test repo get out of sync.</p>
<p><strong>Questions:</strong></p>
<ul>
<li>How would you test the Model in this case?</li>
<li>Is it appropriate to test the model?</li>
<li>Is it a matter of discipline to ensure your test keep up with the implementation of the business logic?</li>
</ul>
http://stackoverflow.com/questions/1162110/count-the-number-of-nodes-in-an-xml-snippet-using-javascript-e4x1Count the number of nodes in an XML snippet using Javascript/E4Xpcampbell2009-07-21T22:38:37Z2009-11-23T20:04:44Z
<p>Consider this problem:</p>
<p>Using Javascript/E4X, in a non-browser usage scenario (a Javascript HL7 integration engine), there is a variable holding an XML snippet that could have multiple repeating nodes. </p>
<pre><code><pets>
<pet type="dog">Barney</pet>
<pet type="cat">Socks</pet>
</pets>
</code></pre>
<p><strong>Question</strong>: How to get the count of the number of pet nodes in Javascript/E4X ?</p>
<p>EDIT: To clarify, this question should be around <a href="http://en.wikipedia.org/wiki/E4x" rel="nofollow">E4X (ECMAScript for XML)</a>. Apologies to those who answered without this information. I should have researched & posted this info beforehand.</p>
http://stackoverflow.com/questions/1784532/sql-server-filegroup-full-during-a-large-insert-into-statement0SQL Server filegroup full during a large INSERT INTO statementpcampbell2009-11-23T17:04:17Z2009-11-23T17:53:17Z
<p>Consider a SQL script designed to copy rows from one table to another in a SQL 2000 database. The transfer involves 750,000 rows in a simple:</p>
<pre><code>INSERT INTO TableB([ColA],[ColB]....[ColG])
SELECT [ColA],[ColB]....[ColG]
FROM TableA
</code></pre>
<p>This is a long running query, perhaps in part because <code>ColB</code> is of type <code>ntext</code>.
There are a handful of <code>CONVERT()</code> operations in the <code>SELECT</code> statement.</p>
<p>The difficulty is that after ~15 mins of operation, this exception is raised by SQL Server.</p>
<blockquote>
<p>Could not allocate space for object '[TABLE]'.'[PRIMARY_KEY]' in database '[DB]' because the 'PRIMARY' filegroup is full.
Create disk space by deleting unneeded files, dropping objects in the filegroup, adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup.</p>
</blockquote>
<p><strong>More Info</strong></p>
<ul>
<li>Autogrowth is already on.</li>
<li>there is more than enough free space on disk (~20gb)</li>
<li>the single .mdf is ~6gb</li>
<li>no triggers on the source or target tables</li>
</ul>
<p><img src="http://imgur.com/fUxC9.png" alt="alt text"></p>
<p><img src="http://imgur.com/Zp9SK.png" alt="alt text">
<strong>Question</strong></p>
<p>What options need to be set, either via Management Studio, or via T-SQL to allow the database to grow as required? What other remedies would you suggest?</p>
<p><strong>Resolution</strong></p>
<p>The db could not grow as needed because I was hosting this database on an instance of SQL Server 2008 <strong>Express</strong>. Upgrading to a non-neutered version of SQL Server will solve this problem.</p>
<p><img src="http://imgur.com/Ang5A.png" alt="alt text"></p>
http://stackoverflow.com/questions/1781204/what-is-the-difference-between-keyvaluepair-and-hashtable-in-net/1781213#17812130Answer by pcampbell for What is the difference between KeyValuePair and Hashtable in .NET?pcampbell2009-11-23T05:12:51Z2009-11-23T05:12:51Z<p>One relevant bit is that <a href="http://msdn.microsoft.com/en-us/library/system.collections.hashtable.aspx" rel="nofollow">Hashtable</a> is a .Net 1.1 class, whereas <a href="http://msdn.microsoft.com/en-us/library/5tbh8a42.aspx" rel="nofollow">KeyValuePair</a> was introduced in .NET 2.0. (with the introduction of generics)</p>
http://stackoverflow.com/questions/1779220/why-is-linq-to-sql-databinding-to-gridview-much-slower-than-pass-through-sql/1779300#17793002Answer by pcampbell for Why is Linq To Sql databinding to gridview much slower than pass-through SQL?pcampbell2009-11-22T17:12:33Z2009-11-22T17:12:33Z<p>Capture and analyze the SQL statement(s) that are being sent over the wire in your Linq To Sql example. SQL Profiler will do the trick.</p>
<p>Run both those statements from Example 1 and 2 directly against your SQL Server using Management Studio. Likely you won't see ANY substantial difference in the query plan.</p>
<p>I think the majority of time is spent in constructing the C# objects (<a href="http://stackoverflow.com/questions/1779220/linq2sql-much-slower-than-generale-sql-why/1779271#1779271">Jason's answer nails it</a>, I think).</p>
http://stackoverflow.com/questions/1774334/what-site-is-a-good-example-of-jquery/1774345#17743453Answer by pcampbell for What Site is a Good Example of JQuerypcampbell2009-11-21T02:47:11Z2009-11-21T02:47:11Z<p>I'd recommend the site <a href="http://www.learningjquery.com/2007/08/what-is-this" rel="nofollow">LearningJQuery</a>.</p>
<p>They've got advanced, intermediate and beginner examples.</p>
<p>I'd suggest that any site who is using the minified jQuery library is doing themselves and their visitors a favour!</p>
http://stackoverflow.com/questions/624942/assemblys-app-config-is-being-ignored-machine-config-being-read-instead0Assembly's App.Config is being ignored; Machine.config being read instead.pcampbell2009-03-09T03:42:49Z2009-11-20T17:45:45Z
<p>In running my VS2008 <strike>unit</strike> integration tests against my DAL, I have found that the assembly is reading <code>machine.config</code> instead of the assembly's <code>app.config</code>.</p>
<p>Here's the rundown on the call stack:</p>
<ul>
<li>Unit Test Project has method calling into a DataLayer Project </li>
<li><code>MyDataLayer</code> class inherits from a base class. Method is called <code>GetStuff()</code></li>
<li>Base class is using <code>System.Configuration</code> . All good.</li>
<li>calling this property in code: <code>ConfigurationManager.ConnectionStrings["MyConnStr"]</code> actually returns null because it's not found apparently.</li>
<li>checking the <code>MyDataLayer</code> class, yep, MyConnStr is there.</li>
<li>checking the collection <code>ConnectionStrings</code>, yes, it has one connection string. It's the one in machine.config that's over in <code>C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\machine.config</code></li>
<li>I am not sure why my DAL's <code>app.config</code> is being superseded by the <code>machine.config</code></li>
</ul>
<p>Any help is appreciated!</p>
http://stackoverflow.com/questions/1862097/storing-images-in-db-networked-desktop-applications/1876254#1876254Comment by pcampbell on Storing Images in DB - Networked Desktop Applicationspcampbell2009-12-15T23:27:50Z2009-12-15T23:27:50Z@Greg; I appreciate your comments. Given that this is a medical application or medical content, I focused a large part of my answer on the issues around privacy and security. I appreciate your answer and comments around the ideas of managing security within the application rather than filesystems, ACLs, AD, etc. I approached it with that set of assumptions, even though the poster did not. I'd only bring the suggestion that those pieces are mature and well tested, whereas MyApp may not get the same treatment.http://stackoverflow.com/questions/1862097/storing-images-in-db-networked-desktop-applications/1876254#1876254Comment by pcampbell on Storing Images in DB - Networked Desktop Applicationspcampbell2009-12-15T21:56:13Z2009-12-15T21:56:13ZWas the downvote necessary? ~1 min proximity from your comment timestamp. Security/logging/auditing is one feature in the answer.http://stackoverflow.com/questions/1895773/ms-access-searching-a-column-for-a-star-asterisk/1895782#1895782Comment by pcampbell on MS Access: searching a column for a star/asteriskpcampbell2009-12-13T07:03:38Z2009-12-13T07:03:38ZShould it have a boolean condition though - something like <code>where instr(pattern,chr(42)) > 0</code> ?
http://stackoverflow.com/questions/1894759/is-it-possible-to-render-an-html-in-a-word-documentComment by pcampbell on Is it possible to render an HTML in a word document pcampbell2009-12-13T01:06:47Z2009-12-13T01:06:47Z@ASP - are you able to edit your question, and fill in any details around: what you've tried so far, what the end goal is, and what technologies you're using to solve this problem?http://stackoverflow.com/questions/1888392/next-instance-of/1888905#1888905Comment by pcampbell on next instance ofpcampbell2009-12-11T16:09:47Z2009-12-11T16:09:47Z+1 Excellent demo!http://stackoverflow.com/questions/1883608/best-text-to-use-in-the-first-default-option-in-drop-down-list/1883641#1883641Comment by pcampbell on Best Text to Use in the First (Default) option in Drop-Down list?pcampbell2009-12-10T20:09:47Z2009-12-10T20:09:47Z+1 Great suggestions. Prompt the user for action. Consider the verb 'choose' as well.http://stackoverflow.com/questions/1868303/developers-checking-in-non-conforming-codeComment by pcampbell on Developers checking in non-conforming codepcampbell2009-12-08T17:05:57Z2009-12-08T17:05:57ZThanks aaronls - updated the question. It's a mix of .NET languages, HTML, DOM-JavaScript, TSQL, and other large JavaScript-only projects.http://stackoverflow.com/questions/1862130/javascript-strip-out-non-numeric-characters-from-string/1862219#1862219Comment by pcampbell on Javascript: strip out non-numeric characters from stringpcampbell2009-12-07T19:55:35Z2009-12-07T19:55:35ZThanks csj; anyplace to find more info on <code>\D</code> ?http://stackoverflow.com/questions/1853363/query-a-list-of-names-from-one-table-that-appear-in-a-field-in-a-different-tableComment by pcampbell on Query a list of names from one table that appear in a field in a different tablepcampbell2009-12-05T20:38:53Z2009-12-05T20:38:53Z@Mike, can you specify your platform so as to make use of specific features in the SQL implementation? Perhaps you prefer strictly ANSI SQL?http://stackoverflow.com/questions/1842228/how-to-write-this-linq-queryComment by pcampbell on How to write this linq query?pcampbell2009-12-03T20:56:23Z2009-12-03T20:56:23ZNicolas; perhaps you could update your question with the class definition, or perhaps some sample data?http://stackoverflow.com/questions/1841815/mysql-returning-distinct-results-for-multiple-conditions/1841972#1841972Comment by pcampbell on MySQL returning distinct results for multiple conditionspcampbell2009-12-03T18:40:17Z2009-12-03T18:40:17Z+1 for proper joins!http://stackoverflow.com/questions/703272/could-not-establish-trust-relationship-for-ssl-tls-secure-channel-soap/703285#703285Comment by pcampbell on Could not establish trust relationship for SSL/TLS secure channel -- SOAPpcampbell2009-12-03T16:54:53Z2009-12-03T16:54:53ZThanks Marc. This helped me, and the problem was that the server had a cert signed by a 3rd party CA that I hadn't trusted yet. The solution was to add that CA to the Trusted Root CA list.http://stackoverflow.com/questions/1835230/sql-server-slow-select-from-large-table/1835243#1835243Comment by pcampbell on SQL Server slow select from large tablepcampbell2009-12-02T19:30:14Z2009-12-02T19:30:14ZIt would be nice to benchmark the query with and without the <code>Order By CreatedAt</code> clause!http://stackoverflow.com/questions/1817727/how-to-store-results-of-a-linq-to-sql-query-in-memory/1817753#1817753Comment by pcampbell on How to store results of a LINQ To SQL query in memorypcampbell2009-11-30T03:52:03Z2009-11-30T03:52:03ZAbsolutely the right way to solve this problem, IMO. The client knows the index and the number of records to retrieve. This is the simplest way to find the right data at the right time. No real need to start storing this stuff in a cache or session. Just select the records on demand by the user. If this was a multi-user app, the answer might be different. No indication was given in the question, though.http://stackoverflow.com/questions/1784532/sql-server-filegroup-full-during-a-large-insert-into-statement/1784580#1784580Comment by pcampbell on SQL Server filegroup full during a large INSERT INTO statementpcampbell2009-11-23T17:22:39Z2009-11-23T17:22:39ZThanks Chad, updated the question with a screenshot of the FG definition.