User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T16:20:33Zhttp://stackoverflow.com/feeds/user/47161http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807640/how-do-i-determine-the-narrowest-font-on-windows/1807698#18076980Answer by erikkallen for How do I determine the "narrowest" font on Windows?erikkallen2009-11-27T09:37:40Z2009-11-27T10:13:31Z<p>Try to enumerate all fonts, measuring "The quick brown fox jumped over the lazy dog" with each one and then take the one that occupies the least space.</p>
<p><a href="http://tinyurl.com/yart9mq" rel="nofollow">This link</a> explains how to enumerate fonts</p>
<p><a href="http://tinyurl.com/yghv45z" rel="nofollow">This link</a> explains how to measure strings</p>
http://stackoverflow.com/questions/1805179/how-to-declare-a-union-in-c/1805411#18054111Answer by erikkallen for How to declare a union in C#?erikkallen2009-11-26T19:52:41Z2009-11-27T10:06:24Z<p>The problem is that no matter what you specify for MarshalAsAttribute, an array is an array is a managed object. To make your code work you will have to get rid of the managed array. To do this you have two options:</p>
<p><strong>Option 1:</strong></p>
<p>Convert the array to a fixed size buffer, which means change your definition of DDD to this:</p>
<pre><code>unsafe struct DDD {
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 512, ArraySubType = UnmanagedType.I1)]
fixed byte x[512];
}
</code></pre>
<p>(I'm not sure whether the MarshalAsAttribute is needed, but I doubt so.)</p>
<p>Now you are using an unsafe struct, so you have to compile with the /unsafe switch.</p>
<p><strong>Option 2:</strong></p>
<p>Convert the array to 512 bytes of members. The easiest way would be to use 64 longs:</p>
<pre><code>struct DDD {
long x1;
long x2;
long x3;
...
}
</code></pre>
<p>Edit: Clarified.</p>
http://stackoverflow.com/questions/1802692/how-to-use-variable-in-target-database-name-for-insert-statement/1803004#18030040Answer by erikkallen for How to use variable in target database name for insert statement?erikkallen2009-11-26T10:56:15Z2009-11-26T10:56:15Z<p>If you need to insert into different databases from the same source database, use dynamic SQL just as others say.</p>
<p>However, if the problem is that you want to syncronize devserver1 with devserver2, and prodserver1 with prodserver2, and have the other database as a config option, then use synonyms.</p>
http://stackoverflow.com/questions/1802597/find-exception-type/1802641#18026410Answer by erikkallen for find exception typeerikkallen2009-11-26T09:43:33Z2009-11-26T09:43:33Z<pre><code>try
{
}
catch (Exception err)
{
if (err is Web2PDFException)
DoWhatever();
}
</code></pre>
<p>but there is probably a better way of doing whatever it is you want.</p>
http://stackoverflow.com/questions/1802604/asp-net-with-mysql-or-sqlexpress/1802624#18026241Answer by erikkallen for ASP.NET with MySql or SqlExpress?erikkallen2009-11-26T09:40:36Z2009-11-26T09:40:36Z<ol>
<li>I don't know MySQL, but 10K hits/day is nothing (unless, of course, they all happen within 10 minutes and the rest of the day is without traffic).</li>
<li>Same as 1.</li>
<li>SQL server express will use 1GB, but RAM is also used for other things in the system. Upgrading to 2GB would certainly help, above that is uncertain, but RAM is cheap so buy 4GB to be safe.</li>
</ol>
<p>Edit: 10K hits/day, evenly distributed, is 0.12 hits/second, or 1 hit every 8.5 seconds.</p>
http://stackoverflow.com/questions/1802500/does-antiforgerytoken-in-asp-net-mvc-prevent-against-all-csrf-attacks/1802566#18025660Answer by erikkallen for Does AntiForgeryToken in asp.net MVC prevent against all CSRF attacks?erikkallen2009-11-26T09:26:21Z2009-11-26T09:26:21Z<p>Could the user possibly have done it? If so, it can possibly be done automatically.</p>
http://stackoverflow.com/questions/1802512/displaying-attributes-in-xml/1802558#18025581Answer by erikkallen for Displaying attributes in XMLerikkallen2009-11-26T09:24:18Z2009-11-26T09:24:18Z<p>Your last example has a newline inside the contents. This can make a difference, at least with some XML parsers with some settings applied.</p>
http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800426#18004260Answer by erikkallen for Does this code prevent SQL injection?erikkallen2009-11-25T22:40:19Z2009-11-25T22:40:19Z<p>I think it's safe (at least in SQL server), and I also think the only thing you actually need to do is <code>s = s.Replace("'", "''")</code>. Of course you should use parameterized queries, but you already know that.</p>
http://stackoverflow.com/questions/1799357/how-to-convert-int-into-dword-return-code-from-getexitcodeprocess-c/1799494#17994940Answer by erikkallen for How to convert INT into DWORD return code from GetExitCodeProcess [C#]erikkallen2009-11-25T19:46:24Z2009-11-25T19:46:24Z<p>A DWORD and an INT are the same thing*. What you are wondering about has to do with whether a number is represented in base-10 or base-16. However, they are still the same numbers. 32 === 0x20, they are identical, not even automatically converted to eachother. Usually when you care about the base, what you are really looking for is bitwise operations (look up the operators &, | and ~).</p>
<p>*yes, I know DWORDs are unsigned and INTs are signed.</p>
http://stackoverflow.com/questions/1798374/sql-server-locking-problem-on-popular-table/1798535#17985350Answer by erikkallen for SQL Server locking problem on popular tableerikkallen2009-11-25T17:23:05Z2009-11-25T17:23:05Z<p>Readers don't block readers, so if inserts and updates on is_clientindex are rare, there will be no contention on this table. Even if SELECTS timed out, it wouldn't just do that silently (and does anyone really allow SELECTs to time out by setting SET LOCK_TIMEOUT?).</p>
<p>My guess is that sometimes the clientid does not exists, which is a condition that will cause @s to not be modified and retain its value of NULL.</p>
<p>And, btw, use scope_identity() instead of @@identity.</p>
http://stackoverflow.com/questions/1796100/what-is-faster-many-ifs-or-else-if/1796150#17961500Answer by erikkallen for what is faster many ifs or else iferikkallen2009-11-25T10:54:26Z2009-11-25T10:54:26Z<p>Have you seen in your profiler that branching takes a significant amount of time in your code?</p>
http://stackoverflow.com/questions/1789658/datatable-into-listt-without-where-t-class-new-potential-problems/1789774#17897741Answer by erikkallen for DataTable into List<T> *without* where T : class, new() - potential problems?erikkallen2009-11-24T12:28:33Z2009-11-24T12:28:33Z<p>An alternative to the reflection solution could perhaps be to use a creator lambda:</p>
<pre><code>protected static List<T> ConvertTo<T>(DataTable dt, Func<DataRow, T> create) {
int count = dt != null ? dt.Rows.Count : 0;
List<T> list = new List<T>(count);
if (dt != null & dt.Rows.Count > 0)
{
foreach (DataRow row in dt.Rows)
{
list.Add(create(row));
}
}
return list;
}
</code></pre>
<p>which you then invoke like:</p>
<pre><code>var result = ConvertTo(dt, row => CreateObjectFromRow(row));
</code></pre>
http://stackoverflow.com/questions/1785188/why-does-firefox-round-trip-to-the-server-to-determine-whether-my-files-are-modif1Why does firefox round-trip to the server to determine whether my files are modifed?erikkallen2009-11-23T18:51:30Z2009-11-23T21:56:28Z
<p>I have some static content on my web site that I have set up caching for (using Asp.NET MVC). According to Firebug, the first time I open the page, Firefox sends this request:</p>
<pre><code>GET /CoreContent/Core.css?asm=0.7.3614.34951
Host: 127.0.0.1:3916
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://127.0.0.1:3916/Edit/1/101
Cookie: .ASPXAUTH=52312E5A802C1A079E2BA29AA2BFBC5A38058977B84452D62ED52855D4164659B4307661EC73A307BFFB2ED3871C67CB3A9AAFDB3A75A99AC0A21C63A6AADE9A11A7138C672E75125D9FF3EFFBD9BF62
Pragma: no-cache
Cache-Control: no-cache
</code></pre>
<p>Which my server replies to with this:</p>
<pre><code>Server: ASP.NET Development Server/9.0.0.0
Date: Mon, 23 Nov 2009 18:44:41 GMT
X-AspNet-Version: 2.0.50727
X-AspNetMvc-Version: 1.0
Cache-Control: public, max-age=31535671
Expires: Tue, 23 Nov 2010 18:39:12 GMT
Last-Modified: Mon, 23 Nov 2009 18:39:12 GMT
Vary: *
Content-Type: text/css
Content-Length: 15006
Connection: Close
</code></pre>
<p>So far, so good. However, if I refresh Firefox (not a cache-clearing refresh, just a normal one), during that refresh cycle Firefox will once again go to the server with this request:</p>
<pre><code>GET /CoreContent/Core.css?asm=0.7.3614.34951
Host: 127.0.0.1:3916
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Referer: http://127.0.0.1:3916/Edit/1/101
Cookie: .ASPXAUTH=52312E5A802C1A079E2BA29AA2BFBC5A38058977B84452D62ED52855D4164659B4307661EC73A307BFFB2ED3871C67CB3A9AAFDB3A75A99AC0A21C63A6AADE9A11A7138C672E75125D9FF3EFFBD9BF62
If-Modified-Since: Mon, 23 Nov 2009 18:39:20 GMT
Cache-Control: max-age=0
</code></pre>
<p>to which my server responds <code>304 Not Modified</code>.</p>
<p>Why does Firefox issue this second request? In the first response, I said that the cache does not expire for a year (I intend to use query parameters whenever things change). Do I have to add another response header to prevent this extra roundtrip?</p>
<p><strong>Edit</strong>: It does not matter whether I press refresh, or whether I go to the page again (or a different URL, which references the same external files). Firefox does the same again. Also, I don't claim this to be a bug in FF, I just wonder if there is another header I can set which means "This document will never change, don't bother me again".</p>
http://stackoverflow.com/questions/1769892/sql-server-insert-data-from-table-into-an-xml-variable2SQL server insert data from table into an XML variableerikkallen2009-11-20T11:29:44Z2009-11-21T22:05:12Z
<p>How can I insert a whole bunch of rows into an XML variable without using a cursor?
I know I can do</p>
<pre><code>SET @errors.modify('insert <error>{ sql:variable("@text") }</error> as last into /errors[1]')
</code></pre>
<p>to insert the value of a variable, but I want to basically do</p>
<pre><code>SET @errors.modify(SELECT 'insert <error>{ sql:column("text") }</error>' FROM table)
</code></pre>
<p>which, of course, isn't legal syntax.</p>
<p>Edit: Obviously my question wasn't clear. What I want is to be able to do like this:</p>
<pre><code>CREATE TABLE my_table(text nvarchar(50))
INSERT INTO my_table VALUES('Message 2')
INSERT INTO my_table VALUES('Message 3')
DECLARE @errors xml
SET @errors = '<errors><error>Message 1</error></errors>'
SET @errors.modify('INSERT EVERYTHING FROM my_table MAGIC STATEMENT')
</code></pre>
<p>And after running this code, @errors should contain </p>
<pre><code><errors>
<error>Message 1</error>
<error>Message 2</error>
<error>Message 3</error>
</errors>
</code></pre>
http://stackoverflow.com/questions/1263134/standard-way-to-detect-when-focus-leaves-an-element1Standard way to detect when focus leaves an elementerikkallen2009-08-11T21:47:23Z2009-11-20T12:21:12Z
<p>How can I, in a standard way, detect when focus leaves an element or any of its child elements.</p>
<p>blur won't do since it's fired when the focus goes into a child element.</p>
<p>IE provides the incredibly useful event focusout for this (it's like blur, but bubbles), but How can I do it in a standard way, except for attaching a blur handler to all the child elements?</p>
<p>Edit: apparently I was not clear about what I meant.</p>
<p>I have a structure like this:</p>
<pre><code><div id="parent">
<input type="text" id="child1">
<div id="child2" tabindex="0">yada</div>
</div>
<input type="text" id="outside"/>
</code></pre>
<p>I want to attach an event handler to parent to find out when focus leaves any of its child elements (child1 and child2) to go to an element outside of parent, e.g. the one with id "outside". In IE I can do this by binding to the focusout event, but that event does not exist in Firefox (or in the W3C DOM).</p>
http://stackoverflow.com/questions/1263134/standard-way-to-detect-when-focus-leaves-an-element/1704074#17040740Answer by erikkallen for Standard way to detect when focus leaves an elementerikkallen2009-11-09T21:45:15Z2009-11-20T12:21:12Z<p>I ended up creating the <a href="http://plugins.jquery.com/project/focus" rel="nofollow">jQuery focus</a> plugin to solve this issue, in case anyone runs into the same problem.</p>
http://stackoverflow.com/questions/1762218/how-do-i-use-the-operator-in-mvc/1762252#17622524Answer by erikkallen for How do I use the '?' operator in mvc?erikkallen2009-11-19T10:16:04Z2009-11-19T18:51:01Z<p>int? is a shorthand for Nullable<int>, which means that the value can either be an integer or null. To convert a Nullable<int> to an int, use</p>
<pre><code>int? ni = 2;
int i = (int)ni;
</code></pre>
<p>or</p>
<pre><code>int? ni = 2;
int i = ni.Value;
</code></pre>
<p>This will throw an exception if the value is null, so you can also use</p>
<pre><code>int? ni = null;
int i = ni ?? 0;
</code></pre>
<p>to use 0 as a default value.</p>
http://stackoverflow.com/questions/1762223/c-calling-a-virtual-method-from-constructor-advice/1762245#17622452Answer by erikkallen for C#: Calling a virtual method from constructor; advice?erikkallen2009-11-19T10:13:25Z2009-11-19T10:13:25Z<p>Can you set the background color in an event handler, e.g. OnLoad?</p>
http://stackoverflow.com/questions/1756007/why-not-use-tfs-as-a-build-ci-solution/1756887#17568871Answer by erikkallen for Why not use TFS as a build / CI solution ?erikkallen2009-11-18T15:43:18Z2009-11-18T15:43:18Z<p>The main problem with TFS is that if you have a server crash, restoring your source code is <a href="http://msdn.microsoft.com/en-us/library/ms404869%28VS.80%29.aspx" rel="nofollow">non-trivial</a>. This is unbelievably bad since the most important aspect of any source control system must be to be fail-resistent, at least if you perform all backups as you should.</p>
http://stackoverflow.com/questions/1747434/save-as-dialogbox-to-save-textbox-content-to-a-newfile-using-asp-net-c/1748215#17482150Answer by erikkallen for Save as DialogBox to save textbox content to a newfile using asp.net c#erikkallen2009-11-17T11:25:53Z2009-11-17T11:25:53Z<p>As others have said, you can't use the SaveFileDialog. If you do, it will only be visible on the server, and the user can never see it. You can only see it because in your case the server and the client happen to be the same.</p>
<p>You should set the HTTP header</p>
<pre><code>Content-Disposition: attachment; filename=somefilename.txt
</code></pre>
http://stackoverflow.com/questions/1748149/dynamic-code-generation/1748199#17481991Answer by erikkallen for Dynamic code generationerikkallen2009-11-17T11:23:03Z2009-11-17T11:23:03Z<p>Do the C# source generation and don't care about speed until it matters. The C# compiler is quite quick.</p>
http://stackoverflow.com/questions/1747637/how-to-darken-an-image-on-mouseover/1747644#17476442Answer by erikkallen for How to darken an image on mouseover?erikkallen2009-11-17T09:37:46Z2009-11-17T09:37:46Z<p>Put a black, semitransparent, div on top of it.</p>
http://stackoverflow.com/questions/1745048/is-there-a-simple-way-to-create-a-unique-integer-key-from-a-two-integer-composite/1745124#17451242Answer by erikkallen for Is there a simple way to create a unique integer key from a two-integer composite key?erikkallen2009-11-16T21:57:52Z2009-11-16T21:57:52Z<p>Multiply one with a high enough value</p>
<pre><code>SELECT id1 * 1000000 + id2
</code></pre>
<p>Or use text concatenation:</p>
<pre><code>SELECT CAST(CAST(id1 AS nvarchar(10)) + RIGHT('000000' + CAST(id2 AS nvarchar(10)), 6) AS int)
</code></pre>
<p>Or skip the integer thing and separate the IDs with something non-numeric:</p>
<pre><code>SELECT CAST(id1 AS nvarchar) + ':' + CAST(id2 AS nvarchar)
</code></pre>
http://stackoverflow.com/questions/1743084/setting-array-values-without-knowing-its-type/1744669#17446690Answer by erikkallen for Setting array values without knowing its typeerikkallen2009-11-16T20:32:28Z2009-11-16T20:32:28Z<p><code>((MyType[])myObjectArray)[0] = new MyType();</code> perhaps?</p>
http://stackoverflow.com/questions/1743650/is-there-a-standard-way-for-net-winforms-apps-to-auto-upgrade/1744619#17446191Answer by erikkallen for Is there a standard way for .NET Winforms apps to auto-upgrade?erikkallen2009-11-16T20:22:47Z2009-11-16T20:22:47Z<p><a href="http://www.kineticjump.com/Update/default.aspx" rel="nofollow">AppLife Update</a> is worth every cent it costs.</p>
http://stackoverflow.com/questions/1739221/what-is-a-good-javascript-debugging-tool/1739263#17392632Answer by erikkallen for What is a good Javascript debugging tool?erikkallen2009-11-15T23:23:36Z2009-11-15T23:23:36Z<p>I think a Visual Studio / IE8 combo is excellent. Beats Firebug for JavaScript debugging, IMO (and you, of course, use a framework like <a href="http://www.jquery.com" rel="nofollow">jQuery</a> to handle crossbrowser issues).</p>
http://stackoverflow.com/questions/1721958/using-parameter-in-sql-with-like-keyword/1722010#17220101Answer by erikkallen for using parameter in SQL with LIKE keyworderikkallen2009-11-12T12:56:52Z2009-11-12T12:56:52Z<p>You don't use LIKE to search a freetext index. You use CONTAINS or FREETEXT or similar.</p>
http://stackoverflow.com/questions/1721354/named-pipe-c-using-net-3-5-features-like-namedpipeclientstream/1721386#17213860Answer by erikkallen for Named pipe C# using .NET 3.5 features like NamedPipeClientStreamerikkallen2009-11-12T10:45:21Z2009-11-12T10:45:21Z<p>I don't know about *NIX, but in Windows they are in the same namespace as named kernel objects (e.g. named mutexes), which is shared by all processes. As for which pipe to listen to, pass that as a command-line argument.</p>
http://stackoverflow.com/questions/1719023/code-review-is-this-the-most-efficient-elegant-way-to-recursively-walk-a-tree/1719049#17190491Answer by erikkallen for Code Review: Is this the most efficient/elegant way to recursively walk a treeerikkallen2009-11-12T00:28:44Z2009-11-12T00:28:44Z<p>I would probably do</p>
<pre><code>public static void RecursiveFunction(StringBuilder sb, Object treeObject) {
sb.Append(treeObject.GetCurrentValue("Name"));
if (treeObject.MoveToFirstChild()) {
do {
RecursiveFunction(sb, treeObject);
} while (treeObject.MoveToNextSiblin());
treeObject.MoveToParent();
}
}
</code></pre>
http://stackoverflow.com/questions/1711421/lazy-stream-for-c-net1Lazy stream for C# / .NETerikkallen2009-11-10T21:39:51Z2009-11-10T22:31:29Z
<p>Does anyone know of a lazy stream implementation in .net? IOW, I want a to create a method like this:</p>
<pre><code>public Stream MyMethod() {
return new LazyStream(...whatever parameters..., delegate() {
... some callback code.
});
}
</code></pre>
<p>and when my other code calls MyMethod() to return retrieve the stream, it will not actually perform any work until someone actually tries to read from the stream. The usual way would be to make MyMethod take the stream parameter as a parameter, but that won't work in my case (I want to give the returned stream to an MVC FileStreamResult).</p>
<p>To further explain, what I'm looking for is to create a layered series of transformations, so</p>
<p>Database result set =(transformed to)=> byte stream =(chained to)=> GZipStream =(passed to)=> FileStreamResult constructor.</p>
<p>The result set can be huge (GB), so I don't want to cache the result in a MemoryStream, which I can pass to the GZipStream constructor. Rather, I want to fetch from the result set as the GZipStream requests data.</p>
http://stackoverflow.com/questions/1813113/how-to-inherit-a-private-member-in-javascriptComment by on How to inherit a private member in JavaScript?2009-11-28T17:36:00Z2009-11-28T17:36:00ZThis pattern does not add a private property. It only adds a local variable called privateProperty in the BaseClass function.http://stackoverflow.com/questions/1813122/is-x-really-faster-than-x-in-practice/1813144#1813144Comment by on Is ++X really faster than X++, in practice?2009-11-28T17:34:34Z2009-11-28T17:34:34ZI think he meant as a pure incrementor. Your code examples are different, and in this case you must use the one that gives the result you want.http://stackoverflow.com/questions/1812159/in-asp-net-is-there-a-function-to-validate-an-email-address/1812162#1812162Comment by on In asp.net is there a function to validate an email address?2009-11-28T11:43:14Z2009-11-28T11:43:14ZOne of those things you shouldn't do, but it never causes any problems in practice.http://stackoverflow.com/questions/1811531/sql-sorting-by-email-domain-nameComment by on SQL: Sorting By Email Domain Name2009-11-28T11:42:09Z2009-11-28T11:42:09Z@Mitch: Though I agree with you, evidence shows that the code always gets written.http://stackoverflow.com/questions/1807988/get-all-records-that-contain-a-number/1808106#1808106Comment by on Get all records that contain a number2009-11-27T11:23:53Z2009-11-27T11:23:53ZIf this is not a one-off search, yes this is probably a good idea. But, of course, you should use a persisted computed column rather than a trigger.http://stackoverflow.com/questions/1807988/get-all-records-that-contain-a-number/1808030#1808030Comment by on Get all records that contain a number2009-11-27T11:23:07Z2009-11-27T11:23:07Z(at least no index supplied by any SQL database).http://stackoverflow.com/questions/1807988/get-all-records-that-contain-a-number/1808030#1808030Comment by on Get all records that contain a number2009-11-27T11:22:25Z2009-11-27T11:22:25ZFor the record, no index in the world would help you with this query.http://stackoverflow.com/questions/1805795/how-to-distribute-a-project-built-in-a-interpreted-language/1805909#1805909Comment by on How To Distribute a Project Built In a Interpreted Language?2009-11-26T22:28:23Z2009-11-26T22:28:23ZWhy do you say "for no real reason"? Me, personally, would never use the thing if I had to install Perl/Tcl/whatever, but with a standalone executable, I might.http://stackoverflow.com/questions/1805030/why-programming-languages-do-not-include-spaces-in-the-method-identifiers/1805646#1805646Comment by on Why programming languages do not include spaces in the method "identifiers"?2009-11-26T21:33:57Z2009-11-26T21:33:57ZAnd you would also need a whole lot of lookahead to realize that it is not a call to a function called "if not foo".http://stackoverflow.com/questions/1805179/how-to-declare-a-union-in-c/1805411#1805411Comment by on How to declare a union in C#?2009-11-26T21:24:59Z2009-11-26T21:24:59ZOK, I updated to include the unsafe keyword. And if you don't want to use unsafe code, you're out of luck.http://stackoverflow.com/questions/1805179/how-to-declare-a-union-in-c/1805315#1805315Comment by on How to declare a union in C#?2009-11-26T19:50:23Z2009-11-26T19:50:23ZNo, this is just so wrong. Did you read the error message?http://stackoverflow.com/questions/1802604/asp-net-with-mysql-or-sqlexpress/1802624#1802624Comment by on ASP.NET with MySql or SqlExpress?2009-11-26T10:58:22Z2009-11-26T10:58:22ZUnless, of course, you have complex logic that takes more than 8.5 seconds on average to process. But if you can't fix that with indexes, you have probably hit the max database size of 4GB.http://stackoverflow.com/questions/1802604/asp-net-with-mysql-or-sqlexpress/1802624#1802624Comment by on ASP.NET with MySql or SqlExpress?2009-11-26T10:57:05Z2009-11-26T10:57:05ZI mean that it is certainly capable of handling loads WAY larger than 1 hit every 8.5 seconds. But it won't scale into infinity.http://stackoverflow.com/questions/1793807/declaring-a-variable-in-an-if-else-block-in-c/1793821#1793821Comment by on Declaring a variable in an if-else block in C++2009-11-25T22:45:09Z2009-11-25T22:45:09ZAnd, of course, you should not use assertions to validate user inputshttp://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injectionComment by on Does this code prevent SQL injection?2009-11-25T22:43:58Z2009-11-25T22:43:58ZWhy the close votes?? It's legitimate