User Ian Nelson - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T15:02:44Zhttp://stackoverflow.com/feeds/user/2084http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/19852/maximum-length-of-a-mime-content-type-header-field0Maximum length of a MIME Content-Type header field?Ian Nelson2008-08-21T13:23:09Z2009-12-04T22:18:52Z
<p>I'm just designing the schema for a database table which will hold details of email attachments - their size in bytes, filename and content-type (i.e. "image/jpg", "audio/mp3", etc).</p>
<p>Does anybody know the maximum length that I can expect a content-type to be?</p>
http://stackoverflow.com/questions/555929/c-memory-usage-of-an-object/556065#5560652Answer by Ian Nelson for C#: Memory usage of an objectIan Nelson2009-02-17T09:20:05Z2009-12-03T20:20:56Z<p><a href="http://www.red-gate.com/products/ants%5Fmemory%5Fprofiler/index.htm" rel="nofollow">ANTS Memory Profiler</a> profiles the memory consumption of .NET code. I've had great results with it in the past.</p>
http://stackoverflow.com/questions/1600510/validate-a-collection-has-at-least-one-item-using-validation-application-block1Validate a Collection Has at Least One Item using Validation Application Block.Ian Nelson2009-10-21T12:33:36Z2009-11-13T02:11:11Z
<p>Using the Enterprise Library 4.1 Validation Application Block, how can I validate that a collection property contains at least one item?</p>
http://stackoverflow.com/questions/18006/recommendations-for-a-net-component-to-access-an-email-inbox2Recommendations for a .NET component to access an email inboxIan Nelson2008-08-20T13:53:20Z2009-10-21T22:11:02Z
<p>I've been asked to write a Windows service in C# to periodically monitor an email inbox and insert the details of any messages received into a database table.</p>
<p>My instinct is to do this via POP3 and sure enough, Googling for ".NET POP3 component" produces countless (ok, 146,000) results.</p>
<p>Has anybody done anything similar before and can you recommend a decent component that won't break the bank (a few hundred dollars maximum)?</p>
<p>Would there be any benefits to using IMAP rather than POP3?</p>
http://stackoverflow.com/questions/325933/determine-whether-two-date-ranges-overlap7Determine Whether Two Date Ranges OverlapIan Nelson2008-11-28T14:48:35Z2009-09-22T21:27:14Z
<p>Given two date ranges, what is the simplest or most efficient way to determine whether the two date ranges overlap?</p>
<p>As an example, suppose we have ranges denoted by DateTime variables StartDate1 to EndDate1 and StartDate2 to EndDate2.</p>
http://stackoverflow.com/questions/204212/can-an-ms-sql-2005-backup-be-restored-onto-an-instance-of-ms-sql-20085Can an MS SQL 2005 backup be restored onto an instance of MS SQL 2008?Ian Nelson2008-10-15T10:01:30Z2009-09-12T19:03:52Z
<p>Is it possible to restore a backup of a SQL Server 2005 database onto an instance of SQL Server 2008?</p>
<p>I need to rebuild a server as it's getting rather crufty, so I plan to take this opportunity to upgrade to SQL 2008 and wondered if I'll be able to restore my backups OK.</p>
http://stackoverflow.com/questions/1290310/how-do-i-configure-my-nhibernate-project-to-use-memcached-in-the-hibernate-cfg-xm/1290325#12903251Answer by Ian Nelson for How do I configure my nhibernate project to use memcached in the hibernate.cfg.xml?Ian Nelson2009-08-17T20:46:32Z2009-08-17T20:46:32Z<p>You'd set those properties in the <code><memcache></code> settings.</p>
<p>See <a href="http://stackoverflow.com/questions/354419/nhibernate-caches-memcache-web-config-for-cache-expiration-time">this question</a> for an example.</p>
http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962896#96289614Answer by Ian Nelson for Do you have the time to write Unit tests?Ian Nelson2009-06-07T21:42:31Z2009-06-07T21:42:31Z<p>Do you have the time <strong>not</strong> to write unit tests?</p>
<p>Maintaining and debugging code which is not covered by unit tests often seems to take too much time.</p>
http://stackoverflow.com/questions/938524/is-orm-linq-hibernate-really-that-usefull/938573#9385730Answer by Ian Nelson for Is ORM (Linq, Hibernate...) really that usefull?Ian Nelson2009-06-02T08:59:13Z2009-06-02T08:59:13Z<p>Easy to implement lazy-loading.</p>
http://stackoverflow.com/questions/938524/is-orm-linq-hibernate-really-that-usefull/938572#9385720Answer by Ian Nelson for Is ORM (Linq, Hibernate...) really that usefull?Ian Nelson2009-06-02T08:58:40Z2009-06-02T08:58:40Z<p>Easy to persist a complex object graph to/from database.</p>
http://stackoverflow.com/questions/20958/list-of-standard-lengths-for-database-fields/31086#310868Answer by Ian Nelson for List of standard lengths for database fieldsIan Nelson2008-08-27T20:01:20Z2009-05-20T19:08:32Z<p><a href="http://www.govtalk.gov.uk/gdsc/html/frames/default.htm" rel="nofollow">UK Government Data Standards Catalogue</a> details the UK standards for this kind of thing.
It suggests 35 characters for each of Given Name and Family Name, or 70 characters for a single field to hold the Full Name, and 255 characters for an email address. Amongst other things..</p>
http://stackoverflow.com/questions/672597/has-asp-net-mvc-made-web-forms-a-legacy-platform6Has ASP.NET MVC made Web Forms a Legacy Platform?Ian Nelson2009-03-23T08:53:44Z2009-04-07T12:34:53Z
<p>Last week at Mix '09, the final version of <a href="http://www.asp.net/mvc/" rel="nofollow">ASP.NET MVC</a> 1.0 was released.</p>
<p>Some of the stated benefits of this framework are:</p>
<blockquote>
<ul>
<li>Clear separation of concerns</li>
<li>Testability - support for Test-Driven Development</li>
<li>Fine-grained control over HTML and JavaScript</li>
<li>Intuitive URLs</li>
</ul>
</blockquote>
<p>Now, Microsoft are being careful to tout this as being "an alternative, not a replacement, for ASP.NET Web Forms", but given the advantages mentioned above, I'm wondering:</p>
<ol>
<li>How long will it be until "classic" ASP.NET Web Forms is considered to be a "legacy" framework? </li>
<li>If you were kicking off the development of a new .NET web project today, why would you choose to use Web Forms instead of the ASP.NET MVC offering?</li>
</ol>
http://stackoverflow.com/questions/654526/continuous-integration-how-to-get-developers-bought-in-to-the-idea13Continuous Integration - How To Get Developers Bought-In To The IdeaIan Nelson2009-03-17T14:40:55Z2009-03-29T13:21:32Z
<p>I'm a freelance developer and have recently set up source control and automated builds (CI and nightly) for a software development team at a client which did not previously use these techniques.</p>
<p>Whilst they are now using the source control (albeit somewhat begrudgingly), I just don't seem able to get them bought into the concept of continuous integration.
The builds are broken most of the time, and the developers express surprise when it comes time to release and they can't integrate their work.</p>
<p>Short of extending the build process such that failures deliver mild electric shocks to their mice and keyboards, how can I persuade the team of the benefits of keeping the builds succeeding?</p>
<p>Update - incidentally, the builds aren't very complex - just compiling the combined code. I had hoped to include unit testing, static analysis, etc, but have had to temper my plans.</p>
http://stackoverflow.com/questions/690313/using-app-config-with-a-class-library/690422#6904220Answer by Ian Nelson for Using app.config with a class libraryIan Nelson2009-03-27T16:19:06Z2009-03-27T16:19:06Z<p>Have each class library define configuration settings in a custom ConfigurationSection.</p>
<p>Then add custom section handlers to your process.exe.config file.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/2tw134k3.aspx" rel="nofollow">This MSDN article</a> is pretty comprehensive in its explanation, with examples in both VB and C#.</p>
<p>It involves writing some pretty repetitive code - Dmitryr has created <a href="http://blogs.msdn.com/dmitryr/archive/2005/10/02/476245.aspx" rel="nofollow">this tool</a> to generate the config sections from a fragment of a XML configuration, which might help. </p>
http://stackoverflow.com/questions/667802/what-is-the-algorithm-to-convert-an-excel-column-letter-into-its-number/667902#66790210Answer by Ian Nelson for What is the algorithm to convert an Excel Column Letter into its Number?Ian Nelson2009-03-20T20:43:26Z2009-03-21T20:24:13Z<pre><code>public static int ExcelColumnNameToNumber(string columnName)
{
if (string.IsNullOrEmpty(columnName)) throw new ArgumentNullException("columnName");
char[] characters = columnName.ToUpperInvariant().ToCharArray();
int sum = 0;
for (int i = 0; i < characters.Length; i++)
{
sum *= 26;
sum += (characters[i] - 'A' + 1);
}
return sum;
}
</code></pre>
http://stackoverflow.com/questions/668284/net-base-class-library-many-ways-to-do-a-specific-task-what-are-the-top-x-vs/668307#6683071Answer by Ian Nelson for .Net base class library - many ways to do a specific task - what are the top X vs Y articles and booksIan Nelson2009-03-20T23:01:44Z2009-03-20T23:01:44Z<p>I suppose a fairly obvious example would be string concatenation.</p>
<p>When concatenating just a handful of strings, you may as well just use the + operator or String.Concat. More than that and you should really consider using StringBuilder for performance reasons.</p>
<p>Is that the kind of thing you're thinking of?</p>
http://stackoverflow.com/questions/666733/my-team-member-added-a-reference-to-a-third-party-dll-and-did-a-check-in-now-i/666749#6667492Answer by Ian Nelson for My team member added a reference to a third party DLL and did a check-in...now I can't build.Ian Nelson2009-03-20T15:50:13Z2009-03-20T15:50:13Z<p>See the answer I just gave to this question:</p>
<p><a href="http://stackoverflow.com/questions/666597/tfs-c-vs2008-how-to-deal-with-external-assemblies/666623#666623">http://stackoverflow.com/questions/666597/tfs-c-vs2008-how-to-deal-with-external-assemblies/666623#666623</a></p>
<p>Basically, you need to add the DLL into source control, and reference it using file reference, such that the relative file path to the dll is the same for all developers on your team.</p>
http://stackoverflow.com/questions/666597/tfs-vs2008-how-to-deal-with-external-assemblies/666623#6666232Answer by Ian Nelson for TFS, VS2008: How to deal with external assembliesIan Nelson2009-03-20T15:26:53Z2009-03-20T15:45:47Z<p>The third-party assemblies on which your project depends should definitely be in source control. Your build process should be able to get everything it requires (except operating system and core .NET framework stuff) from source control. You should not require specific third-party software to be installed on your build machine..</p>
<p>Here's how I tend to organise this stuff in TFVC:</p>
<p>Create a separate team project called something like "Common" or "Shared" to hold these third-party binaries.</p>
<p>Branch the binaries as required over to a "Solution Items" folder in each project that requires a reference to these assemblies.</p>
<p>So, for example, you might end up with something like this structure:</p>
<pre><code>$
|-Common
| |-Binaries
| |-Microsoft
| |-EnterpriseLibrary
| |-2.0
| |-Microsoft.Practices.ObjectBuilder.dll
|-YourTeamProject
| |-Branches
|-Trunk
|-Source
| |-Solution Items
| | |-Microsoft.Practices.ObjectBuilder.dll
| |-YourProject
|-Tests
</code></pre>
<p>where the copy of the MS dll in YourTeamProject is a branched copy of the assembly in Common.</p>
<p>When referencing the third-party binaries from your project, be sure to use relative File References to the copies of the dll in your "Solution Items" folder. In this way everyone on the team knows where to find the binaries that are referenced by the various projects in your solution, and the relative paths should be the same for each member of your team.</p>
<p>In this way, you only have a single copy of each version of the third-party assembly in your source control. Also, should the third-party release a bugfix version of the assembly, you can update your copy in Common, and merge the changes across to all your projects which make use of it.</p>
http://stackoverflow.com/questions/661633/what-do-you-think-is-an-example-of-a-well-structured-n-tier-net-application/661637#6616370Answer by Ian Nelson for What do you think is an example of a well structured n-tier .Net application?Ian Nelson2009-03-19T10:06:41Z2009-03-19T10:06:41Z<p>I would suggest looking at the <a href="http://code.google.com/p/sharp-architecture/" rel="nofollow">S#arp Architecture</a> project that Billy McCafferty et al have been developing.</p>
<p>In addition to being a great foundation architecture for building n-tier .net applications of the type you describe, it includes a sample Northwind application which you can poke around with.</p>
<p>Have fun!</p>
http://stackoverflow.com/questions/657787/running-oracle-stored-procs-from-c/657823#6578231Answer by Ian Nelson for Running Oracle stored procs from C#Ian Nelson2009-03-18T11:12:44Z2009-03-18T11:12:44Z<p>Check that the Oracle user that your .NET application is connecting with has permissions to execute the stored procedure.</p>
http://stackoverflow.com/questions/657787/running-oracle-stored-procs-from-c/657805#6578050Answer by Ian Nelson for Running Oracle stored procs from C#Ian Nelson2009-03-18T11:07:06Z2009-03-18T11:07:06Z<p>Are you including the package name in the procedureName variable?</p>
<p>i.e. setting procedureName to "<code>FII_DBO.CLEAR_UNIT_TEST_PRODUCT</code>", not just "<code>CLEAR_UNIT_TEST_PRODUCT</code>"?</p>
http://stackoverflow.com/questions/657507/nhibernate-with-microsoft-system-data-oracleclient/657522#6575225Answer by Ian Nelson for Nhibernate with Microsoft System.Data.OracleClientIan Nelson2009-03-18T09:24:23Z2009-03-18T09:29:34Z<p>This line in your configuration:</p>
<pre><code> <property name="connection.driver_class">NHibernate.Driver.OracleDataClientDriver</property>
</code></pre>
<p>is instructing NHibernate to use the ODP.NET drivers found in Oracle.DataAccess.dll .
This allows NHibernate to make use of ODP.NET features such as Connection Pool and tracing.
Depending on the version of Oracle client software installed, you should find a copy of this assembly somewhere like C:\Oracle\product\10.1.0\Client_1\BIN\</p>
<p>If you would prefer to use Microsoft's System.Data.OracleClient driver instead, change this line to:</p>
<pre><code> <property name="connection.driver_class">NHibernate.Driver.OracleClientDriver</property>
</code></pre>
http://stackoverflow.com/questions/657442/fun-whats-your-favourite-programming-snack/657458#6574581Answer by Ian Nelson for Fun: What's your favourite programming snack?Ian Nelson2009-03-18T09:03:11Z2009-03-18T09:03:11Z<p><a href="http://www.peperami.com/" rel="nofollow">Peperami</a> - gotta get my meat fix</p>
http://stackoverflow.com/questions/650911/whats-the-best-way-to-deal-with-dead-branches-in-tfs/650930#6509303Answer by Ian Nelson for What's the best way to deal with dead branches in TFS?Ian Nelson2009-03-16T15:35:12Z2009-03-16T15:41:22Z<p>Deletion isn't permanent, so I'd go with this option.</p>
<p>You can then opt whether or not to view deleted items in SCE (Tools -> Options -> Source Control -> Visual Studio Team Foundation Server -> Show deleted items in the Source Control Explorer).</p>
<p>And you can choose to undelete the branches if necessary.</p>
http://stackoverflow.com/questions/650503/what-do-you-do-with-your-old-computer-books/650513#6505139Answer by Ian Nelson for What do you do with your old computer books?Ian Nelson2009-03-16T13:54:36Z2009-03-16T13:54:36Z<p>I take a three-step approach:</p>
<ol>
<li>Sell them on Amazon if they appear to hold any residual value.</li>
<li>Offer them to colleagues/friends for free.</li>
<li>Recycle them.</li>
</ol>
http://stackoverflow.com/questions/650455/c-parameterized-query-mysql-with-in-clause/650470#6504700Answer by Ian Nelson for C# Parameterized Query MySQL with `in` clauseIan Nelson2009-03-16T13:44:18Z2009-03-16T13:53:22Z<p>Loop round your list of integers and perform individual updates.</p>
<p>MSSQL 2008 offers table-valued parameters to avoid this issue, I'm not aware of any similar functionality in MySQL.</p>
http://stackoverflow.com/questions/650343/inheritance-and-converting-objects/650361#6503614Answer by Ian Nelson for Inheritance and converting objectsIan Nelson2009-03-16T13:10:40Z2009-03-16T13:46:16Z<p>The constructor described in Option 1 is what I would expect to find if I were poking around an unfamiliar API.</p>
<p>They can be boring beasts to write though, and you may forget to update them when adding new fields to the User class. So (if performance considerations allow), consider writing an "intelligent" constructor using reflection, <a href="http://www.johnsadventures.com/archives/2006/07/an%5Fintelligent%5Fcopy%5Fconstructor%5Fin%5Fc%5Fusi/" rel="nofollow">along the lines of this example</a>.</p>
<p>On the issue of constructors versus factory methods, the <a href="http://rads.stackoverflow.com/amzn/click/0321545613" rel="nofollow">Framework Design Guidelines</a> offers the following advice:</p>
<blockquote>
<ul>
<li><p>DO prefer constructors to factories, because they are
generally more usable, consistent,
and convenient then specialized
construction mechanisms.</p></li>
<li><p>CONSIDER using a factory if you need more control than can be
provided by constructors over the
creation of the instances.</p></li>
<li><p>DO use a factory where a developer might not know which type to<br />
construct, such as when coding<br />
against a base type or interface.</p></li>
<li><p>CONSIDER using a factory if having a named method is the only way to
make the operation
self-explanatory.</p></li>
</ul>
</blockquote>
http://stackoverflow.com/questions/17944/how-to-round-up-the-result-of-integer-division9How to Round Up The Result Of Integer DivisionIan Nelson2008-08-20T13:27:40Z2009-03-15T04:44:04Z
<p>I'm thinking in particular of how to display pagination controls, when using a language such as C# or Java.</p>
<p>If I have <em>x</em> items which I want to display in chunks of <em>y</em> per page, how many pages will be needed?</p>
http://stackoverflow.com/questions/642695/why-do-empty-folders-disappear-when-adding-visual-studio-solution-to-tfs/642737#6427371Answer by Ian Nelson for Why do empty folders disappear when adding Visual Studio solution to TFS?Ian Nelson2009-03-13T13:36:10Z2009-03-13T14:48:12Z<p>Apparently it's a feature, not a bug:</p>
<blockquote>
<p>"in the Add files to source control we
do not support the addition of empty
folders, but in our research our users
preferred the SCE toolbar button for
actually creating their empty tree
structure rather than going to the
file system, doing it there and then
adding to source control."</p>
</blockquote>
<p><a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=119974" rel="nofollow">http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=119974</a></p>
<p>In TFS2008 you can drag and drop folders from Windows Explorer into source control explorer, and empty subfolders will be created when checking in. Not sure if this works in TFS2005, I don't have an instance handy to test it - anyone?</p>
http://stackoverflow.com/questions/642822/how-can-i-do-a-before-updated-trigger-with-sql-server/642836#6428363Answer by Ian Nelson for How can I do a BEFORE UPDATED trigger with sql server?Ian Nelson2009-03-13T13:57:35Z2009-03-13T13:57:35Z<p>T-SQL supports only AFTER and INSTEAD OF triggers, it does not feature a BEFORE trigger, as found in some other RDBMSs.</p>
<p>I believe you will want to use an INSTEAD OF trigger.</p>
http://stackoverflow.com/questions/86553/working-with-pop-imap-email-and-net/86571#86571Comment by Ian Nelson on Working with Pop/IMAP Email and .NET?Ian Nelson2009-11-25T14:01:43Z2009-11-25T14:01:43ZTwo downvotes in a day for this innocuous year-old and accepted answer?! What gives?http://stackoverflow.com/questions/1600510/validate-a-collection-has-at-least-one-item-using-validation-application-block/1605292#1605292Comment by Ian Nelson on Validate a Collection Has at Least One Item using Validation Application Block.Ian Nelson2009-10-23T08:51:11Z2009-10-23T08:51:11ZThanks for providing a range of suggestions.
I think for this particular requirement I'll go with #2 Self Validation.http://stackoverflow.com/questions/1290310/how-do-i-configure-my-nhibernate-project-to-use-memcached-in-the-hibernate-cfg-xm/1290325#1290325Comment by Ian Nelson on How do I configure my nhibernate project to use memcached in the hibernate.cfg.xml?Ian Nelson2009-08-17T21:15:54Z2009-08-17T21:15:54ZNo, in the web.config / app.confighttp://stackoverflow.com/questions/104380/tips-on-refactoring-an-outdated-database-schema/104431#104431Comment by Ian Nelson on Tips on refactoring an outdated database schemaIan Nelson2009-06-11T08:28:27Z2009-06-11T08:28:27ZIt's mostly RDBMS-agnostic.
The book itself contains the actual instructions.
There is a refactoring for <i>adding</i> a lookup table, can't see one for removing it :)
<a href="http://databaserefactoring.com/AddLookupTable.html" rel="nofollow">databaserefactoring.com/AddLookupTable.html/…</a>http://stackoverflow.com/questions/707068/is-this-a-good-job-description-what-title-would-you-give-this-positionComment by Ian Nelson on Is this a good job description? What title would you give this position?Ian Nelson2009-04-01T20:01:29Z2009-04-01T20:01:29Z@Angela - yeah, it should definitely read "teh interwebs" :-)http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/243108#243108Comment by Ian Nelson on Dealbreakers for new programming jobs?Ian Nelson2009-03-27T10:14:24Z2009-03-27T10:14:24ZOh, so true. If I could upvote this more than once, I would...http://stackoverflow.com/questions/677484/very-large-tables-in-sql-serverComment by Ian Nelson on Very large tables in SQL ServerIan Nelson2009-03-24T13:55:06Z2009-03-24T13:55:06ZSome more information would be helpful in order to suggest suitable "tricks". Such as the table structure and examples of queries which are experiencing performance issues. Appropriate use of indexing and partitioning will likely help.http://stackoverflow.com/questions/673476/age-in-years-from-datetime-date-of-birthComment by Ian Nelson on Age in years from DateTime (Date of birth)Ian Nelson2009-03-23T14:04:02Z2009-03-23T14:04:02ZExact duplicate of <a href="http://stackoverflow.com/questions/9/how-do-i-calculate-someones-age-in-c" rel="nofollow">stackoverflow.com/questions/9/…</a>http://stackoverflow.com/questions/666597/tfs-vs2008-how-to-deal-with-external-assemblies/666623#666623Comment by Ian Nelson on TFS, VS2008: How to deal with external assembliesIan Nelson2009-03-23T09:38:41Z2009-03-23T09:38:41Z@Svish - if you reference dlls in a different team project, you'll need to configure your build process to download those files, which is possible but non-trivial. I like to have a copy of all a project's dependencies within the same team project where possible.http://stackoverflow.com/questions/667802/what-is-the-algorithm-to-convert-an-excel-column-letter-into-its-number/667902#667902Comment by Ian Nelson on What is the algorithm to convert an Excel Column Letter into its Number?Ian Nelson2009-03-21T20:24:41Z2009-03-21T20:24:41Z@ackb - Good idea, thanks, I've amended my answer to incorporate your suggestion.http://stackoverflow.com/questions/666597/tfs-vs2008-how-to-deal-with-external-assemblies/666623#666623Comment by Ian Nelson on TFS, VS2008: How to deal with external assembliesIan Nelson2009-03-20T21:36:19Z2009-03-20T21:36:19Z@Svish, as far as I know, you would have to do it manually one by one. If someone knows how to do it en masse, I'd love to know!http://stackoverflow.com/questions/668020/is-there-a-way-to-change-my-openid-used-to-login-to-stackoverflow/668021#668021Comment by Ian Nelson on Is there a way to change my OpenID used to login to StackOverflow?Ian Nelson2009-03-20T21:19:00Z2009-03-20T21:19:00ZI Googled for it :)http://stackoverflow.com/questions/667802/what-is-the-algorithm-to-convert-an-excel-column-letter-into-its-number/667924#667924Comment by Ian Nelson on What is the algorithm to convert an Excel Column Letter into its Number?Ian Nelson2009-03-20T21:00:06Z2009-03-20T21:00:06Z+1 Beautiful, very elegant! But you fell into the same trap I did with the order of magnitude on the Pow call - should be colName.Length - i - 1.http://stackoverflow.com/questions/667802/what-is-the-algorithm-to-convert-an-excel-column-letter-into-its-number/667902#667902Comment by Ian Nelson on What is the algorithm to convert an Excel Column Letter into its Number?Ian Nelson2009-03-20T20:57:01Z2009-03-20T20:57:01Z@Sparr - Thanks, you're right! Edited.http://stackoverflow.com/questions/657787/running-oracle-stored-procs-from-c/657829#657829Comment by Ian Nelson on Running Oracle stored procs from C#Ian Nelson2009-03-18T11:21:33Z2009-03-18T11:21:33ZYeah, the error message is less than helpful, but I guess the thinking is that it's done for security purposes. If the user can't access the stored procedure, then the database won't even admit to its existence.