User samjudson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T00:33:20Zhttp://stackoverflow.com/feeds/user/1908http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1642104/evernote-export-format-enex-to-html-including-pictures/1662267#16622672Answer by samjudson for Evernote export format (ENEX) to HTML, including pictures?samjudson2009-11-02T16:26:41Z2009-11-02T16:26:41Z<p>There is a new Data URI specification <a href="http://en.wikipedia.org/wiki/Data_URI_scheme" rel="nofollow">http://en.wikipedia.org/wiki/Data_URI_scheme</a> which may be of some help provided you are only intending to support modern browsers, and your images are small (for example IE8 only support <32k images).</p>
<p>Other than that the only other thing you can do is use some external scripts to export the image data to file and use them. This would depend greatly on what XSLT processor you are using.</p>
http://stackoverflow.com/questions/1553575/xslt-how-to-parse-xml-with-recursive-elements-to-eclipse-toc-xml/1553615#15536152Answer by samjudson for XSLT - how to parse xml with recursive elements to Eclipse toc.xml?samjudson2009-10-12T09:41:07Z2009-10-12T09:41:07Z<p>I think the following does what you want:</p>
<pre><code><xsl:template match="BODY">
<toc label="Sample Table of Contents">
<xsl:apply-templates select="UL/LI/OBJECT"/>
</toc>
</xsl:template>
<xsl:template match="OBJECT">
<topic label="{param[@name='Name']/@value}" href="{param[@name='Local']/@value}">
<xsl:apply-templates select="following-sibling::UL/LI/OBJECT"/>
</topic>
</xsl:template>
</code></pre>
http://stackoverflow.com/questions/209029/best-way-to-remove-an-event-handler-in-jquery/210345#21034514Answer by samjudson for best way to remove an event handler in jquery?samjudson2008-10-16T21:13:55Z2009-09-30T19:12:59Z<p>In your example code you are simply adding another click event to the image, not overriding the previous one:</p>
<pre><code>$('#myimage').click(function() { return false; }); // Adds another click event
</code></pre>
<p>Both click events will then get fired.</p>
<p>As people have said you can use unbind to remove all click events:</p>
<pre><code>$('#myimage').unbind('click');
</code></pre>
<p>If you want to add a single event and then remove it (without removing any others that might have been added) then you can use event namespacing:</p>
<pre><code>$('#myimage').bind('click.mynamespace', function() { /* Do stuff */ });
</code></pre>
<p>and to remove just your event:</p>
<pre><code>$('#myimage').unbind('click.mynamespace');
</code></pre>
http://stackoverflow.com/questions/1377258/using-the-current-http-request-identity-as-the-default-credentials-for-sharpsvn/1393244#13932440Answer by samjudson for Using the current HTTP request identity as the default credentials for SharpSVNsamjudson2009-09-08T10:39:18Z2009-09-08T10:39:18Z<p>Have you tried using <code>CredentialCache.DefaultCredentials</code> - this should contain the credentials of the currently logged in user.</p>
<p><a href="http://support.microsoft.com/kb/813834" rel="nofollow">http://support.microsoft.com/kb/813834</a></p>
http://stackoverflow.com/questions/1362233/c-where-to-unsubscribe-events-in-a-usercontrol/1362267#13622670Answer by samjudson for C#: Where to unsubscribe events in a UserControlsamjudson2009-09-01T12:40:38Z2009-09-01T12:40:38Z<p>As others have said is there really a need to unsubscribe in your scenario?</p>
<p>If you really do need to unsubscribe however you do it exactly the reverse of subscribing:</p>
<pre><code>UserControl1.Click -= new EventHandler(UserControl1_Click);
</code></pre>
http://stackoverflow.com/questions/16432/c-string-output-format-or-concat/16449#164493Answer by samjudson for C# String output: format or concat?samjudson2008-08-19T15:53:59Z2009-09-01T11:31:12Z<p>Generally I prefer the former, as especially when the strings get long it can be much easier to read.</p>
<p>The other benefit is I believe one of performance, as the latter actually performs 2 string creation statements before passing the final string to the Console.Write method. String.Format uses a StringBuilder under the covers I believe, so multiple concatenations are avoided.</p>
<p>It should be noted however that if the parameters you are passing in to String.Format (and other such methods like Console.Write) are value types then they will be boxed before passed in, which can provide its own performance hits. <a href="http://jeffbarnes.net/blog/post/2006/08/08/Avoid-Boxing-When-Using-StringFormat-with-Value-Types.aspx" rel="nofollow">Blog post on this here</a>.</p>
http://stackoverflow.com/questions/1239759/transact-sql-case-over-a-variable-length-inputexpression/1239783#12397833Answer by samjudson for Transact SQL CASE over a variable length input_expression samjudson2009-08-06T15:45:39Z2009-08-06T15:45:39Z<p>You can do case statements like the following:</p>
<pre><code>select case
when substring(pan,1,2) = '37' then 'AMEX'
when substring(pan,1,1) = '3' then 'Diners'
when substring(pan,1,1) = '4' then 'Mastercard'
when substring(pan,1,1) = '5' then 'VISA'
else 'unknown'
end,
count(*),
sum(amount)
from transactions
group by card_type
</code></pre>
http://stackoverflow.com/questions/1239667/t-sql-datetimes-substracting/1239707#12397070Answer by samjudson for T-SQL datetimes substracting.samjudson2009-08-06T15:31:43Z2009-08-06T15:31:43Z<p>The reason for the issue you are seeing is the way SQL handles the two parts of the way it stores a date.</p>
<p>A date is stored as two part, inside a numerical value. The First part, the integer part stores the day, and the second part, the decimal part stores the time.</p>
<p>If your two dates were equivalent to 1.50 and 1.25 then 1.25 - 1.50 = -0.25 - this is then split up into two parts, -0 Days, and .25 Time. 0.25 of a day would translate to 6 hours, so would give a time of 6.00AM.</p>
<p>To get proper date manipulation you should always use DATEDIFF and DATEPART.</p>
http://stackoverflow.com/questions/909526/jquery-callbacks-being-called-multiple-times/909634#9096341Answer by samjudson for jquery callbacks being called multiple timessamjudson2009-05-26T08:39:47Z2009-08-06T15:23:06Z<p>That would produce the alert when the fadeOut on the last element was called. That would not necessarily be the last fadeOut.</p>
<pre><code>var numDivs = $('div').length;
$('div').fadeOut(1000, function() {
if( numDivs-- > 0 ) return;
alert('this is the final fadeout to complete');
});
</code></pre>
http://stackoverflow.com/questions/1098038/what-is-tkey-and-tvalue-in-a-generic-dictionary/1098065#10980650Answer by samjudson for What is TKey and TValue in a generic dictionary?samjudson2009-07-08T13:24:32Z2009-07-08T13:24:32Z<p>There is a convention to use T to signify the class which your generic class is based on (e.g. <code>List<T></code>). A dictionary however is based on two classes, so they chose to distinguish them with the Key and Value suffix.</p>
<p>They could have chosen anything - elsewhere in other scenarios I have seen T and U used, and other subsequent letters (i.e. V, X etc) if more classes are needed.</p>
http://stackoverflow.com/questions/1068562/xslt-for-declarative-language/1092342#10923420Answer by samjudson for XSLT For Declarative Languagesamjudson2009-07-07T13:29:38Z2009-07-07T13:29:38Z<p>There are probably lots of different ways of doing the same thing. The example you give above is a very declarative method, and a good example of how XSLT can handle things very differently from other languages. </p>
<p>You could also use to loop through the attributes in the above "button" template.</p>
<p>Another alternative might be to provide a generic style attribute template, and give it a different mode:</p>
<pre><code><xsl:template match="button">
var <xsl:value-of select="@id" /> = new <xsl:value-of select="@renderer" />({
id: <xsl:value-of select="@id" />,
styles: {
<xsl:apply-templates select="@height | @vOffset" mode="style"/>
},
}).appendTo(panel);
</xsl:template>
<xsl:template match="@*" mode="style">
&#9;&#9;<xsl:value-of select="name()" />: <xsl:value-of select="." />,
</xsl:template>
</code></pre>
<p>The style template can therefore be reused by many 'controls' with different style attributes.</p>
http://stackoverflow.com/questions/1091586/creating-an-web-api-in-asp-net/1091607#10916070Answer by samjudson for Creating an web API in ASP.Netsamjudson2009-07-07T10:41:30Z2009-07-07T12:57:13Z<p>REST is a simple architectural style for designing APIs that is easy to consume from multiple platforms.</p>
<p>SOAP is more complicated and but does provides standards for many extra protocols such as transactional reliability, messaging, security, authentication etc.</p>
<p>Unless you are writing a complex enterprise messaging system then REST will probably be fine (but don't quote me on that).</p>
<p>You might want to look at the REST in WCF web pages from Microsoft. <a href="http://msdn.microsoft.com/en-us/netframework/cc950529.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/netframework/cc950529.aspx</a>.</p>
http://stackoverflow.com/questions/1091558/named-groups-in-regular-expression/1091580#10915800Answer by samjudson for Named Groups in Regular Expressionsamjudson2009-07-07T10:36:38Z2009-07-07T10:36:38Z<p>Capture groups in Regex are enclosed in brackets (e.g. <code>"(\d+ Week)"</code>).</p>
<p>Named capture groups are done using a question mark and the name, <code>"(?<week>\d+ Week)"</code>.</p>
<p>They are then returned as follows, <code>m.Groups("week").Value</code>.</p>
<p>The full regex (untested) might look something like this:</p>
<pre><code> (?<weeks>\d+ weeks?)\s*(?<days>\d+ days?)\s*(?<hours>\d+ hours?)\s*(?<minutes>\d+ minutes?)
</code></pre>
http://stackoverflow.com/questions/1072360/converting-xslt-1-0-to-xslt-2-0/1091562#10915621Answer by samjudson for Converting XSLT 1.0 to XSLT 2.0samjudson2009-07-07T10:32:28Z2009-07-07T10:32:28Z<p>XSLT should be pretty much backward compatibly, although obviously there are things you can use in XSLT 2.0 that make life much easier.</p>
<p>It sounds like you have something wrong in your XSLT, but as you don't provide anything for us to look at it is hard to say.</p>
<p>I would recommend getting hold of Kernow-for-Saxon - it is a great UI for testing XSLT (much better than trying to use Firefox or IE) and if you have errors in your XSLT then Saxon is one of the better XSLT processors for giving good errors to try to identify the cause.</p>
<p><a href="http://kernowforsaxon.sourceforge.net/" rel="nofollow">http://kernowforsaxon.sourceforge.net/</a></p>
<p>I don't know anything about either the PHP or Qt processors, but it is possible there are errors in them that are not handling your XSLT correctly.</p>
http://stackoverflow.com/questions/1087830/asp-convert-milliseconds-to-date/1087871#10878713Answer by samjudson for ASP: convert milliseconds to date samjudson2009-07-06T16:16:27Z2009-07-06T16:16:27Z<p>Something like the following should work:</p>
<pre><code>Function ConvertPhpToDate(numSeconds)
Dim dEpoch
dEpoch = DateSerial(1970,1,1)
ConvertPhpToDate = DateAdd("s",numSeconds,dEpoch)
End Function
</code></pre>
<p>Note, the php <code>time()</code> function returns the number of 'seconds', not milliseconds. <a href="http://php.net/manual/en/function.time.php" rel="nofollow">http://php.net/manual/en/function.time.php</a></p>
http://stackoverflow.com/questions/1087819/handling-events-of-controls-added-during-runtime/1087849#10878494Answer by samjudson for handling events of controls added during runtimesamjudson2009-07-06T16:11:32Z2009-07-06T16:11:32Z<p>A couple of things:</p>
<p>Firstly you need to make sure the new Controls are added in the Page.OnInit event, so that they are added before the raised events are processed. </p>
<p>They also need to be added again on a postback!</p>
<p>They also need to have a unique ID set.</p>
<p>Finally you can handle the event just like you would in any C# app:</p>
<pre><code>edit.Click += new EventHander(EditButton_Click);
</code></pre>
<p>and later in the code:</p>
<pre><code>protected void EditButton_Click(object sender, EventArgs e)
{
// Do Something
}
</code></pre>
http://stackoverflow.com/questions/1057610/looking-for-a-summary-of-which-version-of-xslt-is-supported-in-each-major-browser/1064637#10646371Answer by samjudson for Looking for a summary of which version of XSLT is supported in each major browsersamjudson2009-06-30T16:18:20Z2009-06-30T16:18:20Z<p>No browser supports anything above XSLT 1.0 at present.</p>
<p>Current XSLT 2.0 processors include Saxon, Gestalt, Altova and possible an IBM processor in beta.</p>
http://stackoverflow.com/questions/1064152/how-to-debug-the-mysql-error-message-caught-an-exception-while-rendering/1064179#10641792Answer by samjudson for How to debug the MySQL error message: Caught an exception while rendering...samjudson2009-06-30T15:02:53Z2009-06-30T15:02:53Z<p>Is it possible that there are no questions, in which case the SQL will contain something like <code>"WHERE question_id IN ()"</code> which wouldn't be valid SQL.</p>
http://stackoverflow.com/questions/1058020/does-datetime-tostrings-return-always-same-format/1058024#105802410Answer by samjudson for Does DateTime.ToString("s") return always same format?samjudson2009-06-29T12:25:51Z2009-06-29T12:25:51Z<p>Yes it does.</p>
http://stackoverflow.com/questions/1057315/db4o-running-in-asp-net-medium-trust-environment/1057330#10573300Answer by samjudson for db4o running in asp.net Medium Trust environmentsamjudson2009-06-29T09:08:36Z2009-06-29T09:08:36Z<p>I don't know if this works, but you could try writing a wrapper DLL that has <code>AllowPartiallyTrustedCaller</code> set to true, and passes all calls to the db4o DLL.</p>
<p>Seeing as db4o is open source you could download and recompile with <code>AllowPartiallyTrustedCaller</code> set to true yourself of course.</p>
<p><a href="http://developer.db4o.com/forums/thread/27550.aspx" rel="nofollow">This</a> thread however suggests that that might not work.</p>
http://stackoverflow.com/questions/1057272/how-to-avoid-mutable-state-when-multithreading/1057302#10573021Answer by samjudson for How to avoid mutable state (when multithreading)samjudson2009-06-29T09:00:51Z2009-06-29T09:00:51Z<p>There are many pitfalls when working with multiple threads and large sets of data. The advice to avoid mutable state is meant to try to make life easier for you if you can manage to follow the guideline (i.e. if you have no mutable state then multi-threading will be much easier).</p>
<p>If you have a large amount of data that does need to be modified then you perhaps cannot avoid mutable state. An alternative though would be to partition the data into blocks, each of which is passed to a thread for manipulation. The block can be processed and then passed back, and the controller can then perform the updates where necessary. In this scenario you have removed the mutable state from out of the the thread.</p>
<p>If this cannot be done and each thread needs update access to the full list (i.e. it could update any item on the list at any time) then you are going to have a lot of fun trying to make sure you have got your locking strategies and concurrency issues sorted. I'm sure there are scenarios where this is required, and the design pattern of avoiding mutable state may not apply.</p>
http://stackoverflow.com/questions/1057226/iteration-in-jquery/1057264#10572642Answer by samjudson for Iteration in JQuerysamjudson2009-06-29T08:52:12Z2009-06-29T08:52:12Z<p>If you want to iterate through all divs in a panel in JQuery then the easiest way would be to simply do the following:</p>
<pre><code>$("#panel div").each(function() {
// $(this) refers to the div
}
</code></pre>
<p>If you want to limit this to the first N divs then there are numerous ways to do this:</p>
<pre><code>$("#panel div:lt(" + (N+1) + ")").each(function() {
// limits to the only those div's less than N+1.
}
</code></pre>
http://stackoverflow.com/questions/985738/how-do-i-update-tables-in-sql-so-that-related-strings-match/985772#9857721Answer by samjudson for How do I update tables in SQL so that related strings match?samjudson2009-06-12T09:15:57Z2009-06-12T09:15:57Z<p>The following is I believe the simplest:</p>
<pre><code> UPDATE TableB SET Path = TableA.Path
FROM TableA
WHERE TableB.Id = TableA.ID AND TableB.Path <> TableA.Path
</code></pre>
http://stackoverflow.com/questions/985628/regular-expression-with-atleast-1-letter-and-1-number/985642#9856420Answer by samjudson for Regular Expression with atleast 1 letter and 1 numbersamjudson2009-06-12T08:41:40Z2009-06-12T09:03:42Z<p>This would obviously be much easier with two checks, one for the string, one for the number.</p>
<p>Something like the following might work though, seeing as if you have both a number and a letter then you must by definition have a number next to a letter (or vice versa):</p>
<pre><code>([A-Za-z][0-9]|[0-9][A-Za-z])
</code></pre>
<p>Update: removed a spurious '|'. Note, the above assumes no other characters are valid, which I suppose might not be acceptable. See other answer for a better solution if punctuation is allowed.</p>
http://stackoverflow.com/questions/985646/c-convert-generic-pointer-to-array/985707#9857070Answer by samjudson for C#: convert generic pointer to arraysamjudson2009-06-12T08:59:58Z2009-06-12T08:59:58Z<p>I have no idea whatsoever if the following would work, but it might (at least it compiles :):</p>
<pre><code>public unsafe static T[] Create<T>(void* ptr, int length) where T : struct
{
T[] array = new T[length];
for (int i = 0; i < length; i++)
{
array[i] = (T)Marshal.PtrToStructure(new IntPtr(ptr), typeof(T));
}
return array;
}
</code></pre>
<p>The key is to use <code>Marshal.PtrToStructure</code> to convert to the correct type.</p>
http://stackoverflow.com/questions/985574/mapi-in-xbap-application/985625#9856250Answer by samjudson for MAPI in XBAP Applicationsamjudson2009-06-12T08:37:08Z2009-06-12T08:37:08Z<p>Are you aware that XBAP application run in a partial trust environment.</p>
<p>You say "in most cases won't in the XBAP" but don't give any indication of exactly what the problems you are experiences are - are you getting compilation errors, security errors, or some other runtime error.</p>
<p>See the following link for details on Partial Security and WPF:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa970910.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa970910.aspx</a></p>
http://stackoverflow.com/questions/982152/how-can-i-get-the-assembly-version-as-a-integer-in-c/982206#9822061Answer by samjudson for How can I get the assembly version as a integer in C#?samjudson2009-06-11T16:37:09Z2009-06-11T16:37:09Z<p>The following 'works':</p>
<pre><code>string version = "8.0.0.1";
int versionNumber = int.Parse(version.Replace(".", ""));
</code></pre>
<p>However, there would be no difference between version 8.0.11.0 and 8.0.1.10!</p>
http://stackoverflow.com/questions/981611/checking-database-for-null-boolean-value/981629#9816293Answer by samjudson for Checking database for NULL boolean value samjudson2009-06-11T14:58:29Z2009-06-11T14:58:29Z<p>You want <code>IS NULL</code> I believe:</p>
<pre><code>SELECT * FROM table WHERE field IS NULL
</code></pre>
http://stackoverflow.com/questions/981036/how-to-update-another-table-with-the-most-recent-data-in-sql/981133#9811331Answer by samjudson for How to update another table with the most recent data in SQL?samjudson2009-06-11T13:38:35Z2009-06-11T14:32:21Z<p>I'm not sure if this is the fasted code in the world, it obviously depends on how close the two servers are and how much data you have in each table.</p>
<pre><code>UPDATE Table1
SET
f2 = T2.f2,
f3 = convert(varchar, T2.f3, 101)
FROM
Table1 T1
INNER JOIN
Server.DB.dbo.Table2 T2
ON
T1.f1 = T2.f1
WHERE
T2.f3 = (SELECT MAX(f3) FROM Server.DB.dbo.Table2 WHERE f1 = T1.f1)
</code></pre>
<p>An alternative (if you have that much control) is to create a trigger on Table2 which puts the latest version into a temporary table whenever it is updated.</p>
<p>Update: Corrected the code.</p>
http://stackoverflow.com/questions/980029/xslt-firefox-problem/981278#9812781Answer by samjudson for XSLT Firefox Problemsamjudson2009-06-11T14:02:12Z2009-06-11T14:02:12Z<p>Very strange indeed. The only thing I see when I run it is 'BinaryMark'.</p>
<p>Seeing as the only place this appears in the output code is in the javascript at the bottom of the template I changed it to the following and it works fine:</p>
<pre><code><p align="center" class="text">
This Report was generated by
<a href="{Report/@GeneratorURL" target="_blank">
<xsl:value-of select="Report/@Generator"/></a> on
</code></pre>
http://stackoverflow.com/questions/1642104/evernote-export-format-enex-to-html-including-pictures/1662267#1662267Comment by samjudson on Evernote export format (ENEX) to HTML, including pictures?samjudson2009-11-10T14:46:03Z2009-11-10T14:46:03ZWell personally I'd process them in C# because I'm a .Net developer, but you could use Java (in which case there are almost unlimited XSLT processors - Saxon being the best IMHO). Each processor has its own way of implementing extension methods however.http://stackoverflow.com/questions/1553575/xslt-how-to-parse-xml-with-recursive-elements-to-eclipse-toc-xml/1553615#1553615Comment by samjudson on XSLT - how to parse xml with recursive elements to Eclipse toc.xml?samjudson2009-10-13T08:05:03Z2009-10-13T08:05:03ZIn XSLT 2.0 either will work, but in XSLT 1.0 only the latter will work.http://stackoverflow.com/questions/909526/jquery-callbacks-being-called-multiple-times/909634#909634Comment by samjudson on jquery callbacks being called multiple timessamjudson2009-08-06T15:24:00Z2009-08-06T15:24:00ZApologies - should be 'numDivs' inside the function.http://stackoverflow.com/questions/30211/windows-built-in-zip-compression-script-able/30224#30224Comment by samjudson on Windows built-in ZIP compression script-able?samjudson2009-08-06T15:22:26Z2009-08-06T15:22:26ZYou can 'zip' files up into a single file without compressing them, much like 'tar' in unix. This allows you to distribute the files as a package, but does not reduce their size of disk space.http://stackoverflow.com/questions/1098066/i-want-to-be-able-to-see-the-displayrmuform-when-rmuboolean-and-effectivedateComment by samjudson on I want to be able to see the 'displayrmuform' when rmuboolean and effectivedate (right after inputting date) is not nullsamjudson2009-07-08T13:30:12Z2009-07-08T13:30:12ZWhat do you mean by 'not working' - do you get an error, if so list it.http://stackoverflow.com/questions/1098066/i-want-to-be-able-to-see-the-displayrmuform-when-rmuboolean-and-effectivedateComment by samjudson on I want to be able to see the 'displayrmuform' when rmuboolean and effectivedate (right after inputting date) is not nullsamjudson2009-07-08T13:27:09Z2009-07-08T13:27:09ZYou have tagged as C#, yet that looks like JavaScript to me.http://stackoverflow.com/questions/1091586/creating-an-web-api-in-asp-net/1091607#1091607Comment by samjudson on Creating an web API in ASP.Netsamjudson2009-07-07T12:56:26Z2009-07-07T12:56:26ZAgreed - reworded answer.http://stackoverflow.com/questions/1091382/how-to-manipulate-nodes-coming-from-a-get-request/1091405#1091405Comment by samjudson on How to manipulate nodes coming from a $.get request?samjudson2009-07-07T09:58:16Z2009-07-07T09:58:16ZAre you sure you don't just mean $(newHtml)?http://stackoverflow.com/questions/1087819/handling-events-of-controls-added-during-runtime/1087849#1087849Comment by samjudson on handling events of controls added during runtimesamjudson2009-07-07T09:56:32Z2009-07-07T09:56:32ZPut "Button thisButton = (Button)sender;" in the event handler.http://stackoverflow.com/questions/1087819/handling-events-of-controls-added-during-runtime/1087849#1087849Comment by samjudson on handling events of controls added during runtimesamjudson2009-07-06T16:37:20Z2009-07-06T16:37:20ZYes, right after the Button edit = new Button() line.http://stackoverflow.com/questions/1087819/handling-events-of-controls-added-during-runtime/1087849#1087849Comment by samjudson on handling events of controls added during runtimesamjudson2009-07-06T16:20:05Z2009-07-06T16:20:05ZThe first time I did this it was not setting the ID that really got me for ages.http://stackoverflow.com/questions/1057292/sessionstate-out-of-memory-exceptionComment by samjudson on SessionState out of memory exceptionsamjudson2009-06-29T09:04:11Z2009-06-29T09:04:11ZAre you talking about ASP.Net? What are the size of the variables you are assigning to the session variables (and how many sessions are we talking about roughly)?http://stackoverflow.com/questions/1057294/sql-exceptionComment by samjudson on sql exceptionsamjudson2009-06-29T09:01:55Z2009-06-29T09:01:55ZI'm not familiar with those functions. Could you define which class and methods you are referring to.http://stackoverflow.com/questions/981036/how-to-update-another-table-with-the-most-recent-data-in-sql/981133#981133Comment by samjudson on How to update another table with the most recent data in SQL?samjudson2009-06-16T09:29:28Z2009-06-16T09:29:28ZYes, much faster. Also, I notice you are converting the date from a date to a string. If it is possible to have both fields as dates then it would speed things up as the conversion would not have to take place. http://stackoverflow.com/questions/985646/c-convert-generic-pointer-to-array/985707#985707Comment by samjudson on C#: convert generic pointer to arraysamjudson2009-06-12T09:09:47Z2009-06-12T09:09:47Zvoid* was used because you don't know what type the pointer is.
I know very little about pointers to be honest - but this hopefully might get whoever is trying this in the right direction.