User James Marshall - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T04:09:15Z http://stackoverflow.com/feeds/user/1025 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/28033/sql-server-to-mysql 2 SQL Server to MySQL James Marshall 2008-08-26T13:31:55Z 2009-12-08T00:11:57Z <p>I have a backup of an SQL Server DB in .bak format which I've successfully managed to restore to a local instance of SQL Server Express. I now want to export both the structure and data in a format that MySQL will accept. The tools that I use for MySQL management typically allow me to import/export .sql files, but unfortunately Microsoft didn't see fit to make my life this easy!</p> <p>I can't believe I'm the first to run into this, but Google hasn't been a great deal of help. Has anybody managed this before?</p> http://stackoverflow.com/questions/229666/entity-relationship-diagram-for-ms-access 3 Entity Relationship Diagram for MS Access James Marshall 2008-10-23T13:15:19Z 2009-03-04T08:59:25Z <p>I've worked with MySQL and MSSQL for some time and have used a variety of CASE and UML tools when designing some of my more complex projects.</p> <p>I was recently asked by a colleague if I could provide an Access database for his department. The application itself isn't too complicated, and Access actually looks like the ideal tool for the task at hand.</p> <p>Apart from a couple of very amateur databases many years ago (before I'd even heard of normalization) I haven't much experience of Access. I've got into the habit of using ER diagrams to design databases and want to do the same when working with Access. It seems that the built in "Relationship" view is fine for viewing relationships (duh!), but you have to create the tables first, which seems to defeat the point somewhat.</p> <p>Does anybody know of any way to directly design the database using an ERD, either natively within Access, or else via round-trip generation using a 3rd party tool? Non of the software I usually use support Access.</p> <p>I think I've been spoiled by by using "real" databases, but any help is appreciated...</p> <p><strong>Update:</strong> I selected the answer below because it jogged my memory about using ODBC for the job - I already use the excellent ArgoUML application that can connect via ODBC. Just wanted to clarify that selecting the answer below wasn't endorsing the ModelRight application as I never needed to install it.</p> http://stackoverflow.com/questions/371985/is-openbd-or-railo-a-viable-replacement-for-coldfusion/374266#374266 1 Answer by James Marshall for Is OpenBD or Railo a viable replacement for ColdFusion? James Marshall 2008-12-17T11:24:18Z 2008-12-17T11:24:18Z <p>Absolutely! Both are enterprise class solutions and shouldn't pose too many problems. As rip747 mentions there are copies you can download to quickly test your applications compatibility.</p> <p>As for performance it's generally believed that Railo is the fastest of the three engines while BlueDragon is the slowest. Although it's not currently in production I'm developing an application against Railo 3.0 and intend to deploy to Railo 3.1 once it's released.</p> http://stackoverflow.com/questions/299260/web-service-or-dll 6 Web Service or DLL? James Marshall 2008-11-18T16:25:47Z 2008-11-28T11:56:20Z <p>I'm creating an app that needs to be accessed by both a web front end hosted on an internal network and also run as a scheduled task. Nothing will need to be accessed outside of our internal systems and once the app is up and running we don't envisage anything changing for some time.</p> <p>My initial thought is to create a DLL encapsulating the bulk of the necessary functionality and then call it via both a Web Forms interface for manual execution, and a console app running as an automated (daily) scheduled task.</p> <p>Another suggestion has been to expose a Web Service for the core functionality instead, but as the app will never need to be called by an external resource I think the extra effort required in implementing a Web Service might not be worth the hassle. The DLL solution should also be substantially faster(?).</p> <p>My question is which route would you choose? Are there any pros/cons that I haven't covered? Any glaring omissions?</p> <p><strong>Disclaimer:</strong> I'm new to .Net but due to one of our developers being involved in a serious accident I've been asked to step up to the plate.</p> http://stackoverflow.com/questions/155308/how-do-i-get-php-to-work-with-adodb-and-mysql/157912#157912 1 Answer by James Marshall for How do I get PHP to work with ADOdb and MySQL? James Marshall 2008-10-01T14:33:12Z 2008-10-01T14:33:12Z <p>Looks like you haven't got the MySQL PHP extensions installed! You shouldn't have to do any configuration other than installing the correct modules (and shouldn't be doing <em>anything</em> with ADODB).</p> <p>PHP comes in 2 versions as well - a CGI version and an ISAPI module. You're best using the ISAPI version with ISS and adding all the trimmings...</p> http://stackoverflow.com/questions/30288/how-can-you-test-to-see-if-two-arrays-are-the-same-using-cfml/43962#43962 1 Answer by James Marshall for How can you test to see if two arrays are the same using CFML? James Marshall 2008-09-04T15:07:47Z 2008-09-09T09:42:10Z <p>Jasons answer is certainly the best, but something I've done before is performed a hash comparison on objects that have been serialised to WDDX.</p> <p>This method is only useful for relatively small arrays, but it's another option if you want to keep it purely CFML. It also has the benefit that you can apply the method to other data types as well...</p> <p>Edit: Adams' entirely right (as you can see from his numbers) - JSON is much more economical, not only in this situation, but for serialization in general. In my defense I'm stuck using CFMX 6.1 that has no inbuilt JSON functions, and was trying to avoid external libs.</p> http://stackoverflow.com/questions/43971/dynamic-robots-txt/43980#43980 1 Answer by James Marshall for Dynamic robots.txt James Marshall 2008-09-04T15:12:12Z 2008-09-04T15:33:14Z <p>If using Apache I'd use mod-rewrite to alias robots.txt to a script that could dynamically generate the necessary content.</p> <p>Edit: If using IIS you could use <a href="http://www.isapirewrite.com/" rel="nofollow">ISAPIrewrite</a> to do the same.</p> http://stackoverflow.com/questions/27712/what-to-charge-for-a-simple-website/27790#27790 1 Answer by James Marshall for What to charge for a simple website James Marshall 2008-08-26T11:38:05Z 2008-08-26T11:38:05Z <p>Speaking as a full time web developer I'd have to say be wary of undercharging. As others here have said you're bound to underestimate the time required (and by an order of magnitude if you've never done this before).</p> <p>You also don't want to set a precedent whereby people are coming to you looking for huge projects for peanuts - not only do you shoot yourself in the foot but you devalue the industry as a whole.</p> <p>I've actually been stung by "friends of friends" projects enough times that now I just say "thanks, but no thanks"! Naturally YMMV...</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/16429#16429 13 Answer by James Marshall for What is the single most influential book every programmer should read? James Marshall 2008-08-19T15:44:39Z 2008-08-23T10:19:23Z <p>Not <em>the most</em> influential, but certainly a good read and absent so far is <em><a href="http://rads.stackoverflow.com/amzn/click/0976694018" rel="nofollow">My Job Went To India</a></em> by Chad Fowler. It consists of 52 chapters/mini essays giving guidance on how to differentiate yourself as a <em>developer</em> rather than a <em>code monkey</em> (whose work could easily be outsourced). </p> http://stackoverflow.com/questions/1973/what-is-the-best-way-to-avoid-sql-injection-attacks/24111#24111 1 Answer by James Marshall for What is the best way to avoid SQL injection attacks? James Marshall 2008-08-23T09:55:34Z 2008-08-23T10:03:07Z <p>In ColdFusion there is a tag (function) called <a href="http://www.adobe.com/devnet/coldfusion/articles/cfqueryparam.html" rel="nofollow">cfqueryparam</a> that should be used whenever writing inline queries...</p> <p>Usage:</p> <pre> &lt;cfquery datasource="#application.dsn#" name="qryTest" maxrows="#intRows#"&gt; SELECT FirstName, LastName, Phone FROM tblUser WHERE Status = &lt;cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.status#"&gt; &lt;/cfquery&gt; </pre> <p>Naturally you can also call paramatised stored procedures using the <a href="http://www.cfquickdocs.com/#cfstoredproc" rel="nofollow">cfstoredproc</a> and <a href="http://www.cfquickdocs.com/#cfprocparam" rel="nofollow">cfprocparam</a> tags...</p> http://stackoverflow.com/questions/3748/storing-images-in-db-yea-or-nay/22759#22759 0 Answer by James Marshall for Storing Images in DB - Yea or Nay? James Marshall 2008-08-22T16:08:52Z 2008-08-22T16:08:52Z <p>Pulling loads of binary data out of your DB over the wire is going to cause huge latency issues and won't scale well.</p> <p>Store paths in the DB and let your webserver take the load - it's what it was designed for!</p> http://stackoverflow.com/questions/22687/alternative-ssh-application-to-plink/22746#22746 0 Answer by James Marshall for Alternative SSH Application to Plink James Marshall 2008-08-22T16:05:20Z 2008-08-22T16:05:20Z <p>+1 for PuTTy... been using it for the last decade and never needed anything else!</p> http://stackoverflow.com/questions/22704/what-strategies-have-you-employed-to-improve-web-application-performance/22739#22739 1 Answer by James Marshall for What strategies have you employed to improve web application performance? James Marshall 2008-08-22T16:04:00Z 2008-08-22T16:04:00Z <p>As Webjedi says, metrics are your friend.</p> <p>Also look at your stack and see where there are opportunities for caching - then employ mercilessly wherever possible!</p> http://stackoverflow.com/questions/4510/when-to-take-a-break/20374#20374 0 Answer by James Marshall for When to take a break James Marshall 2008-08-21T16:07:21Z 2008-08-21T16:07:21Z <p>Some great suggestions here, but it can be particularly hard when you work from home. Too many times I've found myself coming out of "The Zone" to find it's gone dark!</p> <p>Now I'm in a shared office it's easier - one of my colleagues even has an app installed that prompts him to take a break...</p> http://stackoverflow.com/questions/19458/which-sql/19565#19565 1 Answer by James Marshall for Which SQL? James Marshall 2008-08-21T10:04:16Z 2008-08-21T15:39:22Z <p>Sorry to be pedantic, but the title should really be "Which RDBMS?" - the way it's phrased makes about as much sense as "Which Java?" or "<a href="http://thedailywtf.com/Articles/Which-Internet.aspx" rel="nofollow">Which Internet?</a>"...</p> http://stackoverflow.com/questions/20180/do-you-consider-your-job-evil-neutral-good/20182#20182 1 Answer by James Marshall for Do you consider your job evil/neutral/good ? James Marshall 2008-08-21T15:11:56Z 2008-08-21T15:11:56Z <p>Neutral - I work on eCommerce web apps for a travel company, so at best I allow people to book their vacation out of office hours (at worst I'm helping to oil the wheels of capitalism with the sweat of student vacation reps)!</p> http://stackoverflow.com/questions/8832/modrewrite-to-alias-one-file-suffix-type-to-another 2 mod_rewrite to alias one file suffix type to another James Marshall 2008-08-12T13:44:06Z 2008-08-20T15:59:04Z <p>Hi guys,</p> <p>I hope I can explain this clearly enough, but if not let me know and I'll try to clarify.</p> <p>I'm currently developing a site using ColdFusion and have a mod_rewrite rule in place to make it look like the site is using PHP. Any requests for index.php get processed by index.cfm (the rule maps *.php to *.cfm).</p> <p>This works great - so far, so good. The problem is that I want to return a 404 status code if index.cfm (or any ColdFusion page) is requested directly.</p> <p>If I try to block access to *.cfm files using mod_rewrite it also returns a 404 for requests to *.php.</p> <p>I figure I might have to change my Apache config rather than use .htaccess, but any help is greatly appreciated.</p> <p>Thanks, James</p> http://stackoverflow.com/questions/18126/what-tools-other-than-ide-to-you-find-useful/18139#18139 4 Answer by James Marshall for What tools (other than IDE) to you find useful? James Marshall 2008-08-20T14:49:43Z 2008-08-20T14:49:43Z <p>As a web developer my number one productivity app is the <a href="http://getfirebug.com/" rel="nofollow">Firebug</a> plugin for Firefox. No matter what anyone says there's nothing that comes close for IE...</p> http://stackoverflow.com/questions/1551/how-to-think-in-oo/18037#18037 1 Answer by James Marshall for How to Think in OO James Marshall 2008-08-20T14:03:14Z 2008-08-20T14:03:14Z <p>Head First Java is a fantastic book, but as Hazar says, just dive in - at least you'll learn from your mistakes (which will be numerous). What is particularly worthwhile is learning a language that will only allow OOP - that way you can't rely on your procedural mindset.</p> http://stackoverflow.com/questions/17918/how-to-manage-web-development/18008#18008 1 Answer by James Marshall for How to Manage Web Development? James Marshall 2008-08-20T13:54:05Z 2008-08-20T13:54:05Z <p>We use 3 tiers - production, staging (test) and dev servers. It's a similar setup to Nicks suggestion, but with development work on a shared server rather than on developers individual workstations. This is a double edged sword though - another developers current work can conflict with your own, but at least you're aware of the impact throughout.</p> <p>Generally this works pretty well, but we're only a small team of six. I'm sure that teams with more developers would end up treading on each others toes...</p> http://stackoverflow.com/questions/16403/how-do-you-handle-white-space-in-your-html/16417#16417 1 Answer by James Marshall for How do you handle white space in your HTML James Marshall 2008-08-19T15:36:44Z 2008-08-19T15:36:44Z <p>It may not be very elegant, but I apply CSS to a &lt;pre&gt; tag.</p> <p>There's always the "white-space" CSS attribute, but it can be a bit hit and miss.</p> http://stackoverflow.com/questions/16064/what-ide-to-use-for-developing-in-ruby-on-rails-on-windows/16170#16170 1 Answer by James Marshall for What IDE to use for developing in Ruby on Rails on windows? James Marshall 2008-08-19T13:41:03Z 2008-08-19T13:41:03Z <p>I mainly code ColdFusion or PHP (and JS/CSS/xHTML), but have dabbled in a bit of RoR. RadRails/Apatana has been great for me, because it's built on Eclipse, which I was already using for my other work. It also integrates with Subversion via the Subclipse plugin. </p> <p>The Eclipse platform is so extensible that it's worth investing a bit of time in to learn, but then again I like having a single IDE rather than having to switch between different apps.</p> <p>I briefly looked at Netbeans, but TBH Eclipse just felt better for me, and Aptana itself is great when you come to do anything in JavaScript.</p> <p>YMMV...</p> http://stackoverflow.com/questions/12669/resources-for-getting-started-with-web-development/15947#15947 1 Answer by James Marshall for Resources for getting started with web development? James Marshall 2008-08-19T10:16:15Z 2008-08-19T10:22:14Z <p>I'm with Ian on this one. Reading books is all well and good, but nothing beats getting stuck in. I actually started with a Dummies Guide to ASP (that'd be "classic" ASP), back in 1999.</p> <p>If I was going to start from scratch today I'd be looking at something that covered a full stack solution, whether Apache/PHP/MySQL, RoR or whatever.</p> <p>ATM I have no experience of Rails, but it might be a pretty good place to start as it includes a lot of stuff that you'd have to figure out early on otherwise (integration with a Scriptaculous, a JS framework) - you can always learn what going on under the hood at a later date.</p> <p>.NET is always an option, and if you're comfortable with Visual Studio it may be the way to go, but it's not the easiest thing to pick up otherwise.</p> <p>If you know a bit of HTML but are basically new to server-side programming you might look at ColdFusion. It's actually extremely powerful and like Rails includes lots of "out of the box" benefits. There's a Swiss company called <a href="http://www.railo.ch" rel="nofollow">Railo</a> who are currently in the process of releasing an Open Source ColdFusion engine that is affiliated with JBoss.</p> <p>Last and not least - don't forget databases! Sooner or later you'll need to get to grips with some pretty serious SQL...</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/8997#8997 3 Answer by James Marshall for What is the easiest language to start with? James Marshall 2008-08-12T15:56:43Z 2008-08-12T15:56:43Z <p>JavaScript is a great starting point for learning the basics - you don't need an interpreter or compiler - just a decent web browser and an editor with some pretty syntax highlighting (I recommend Aptana for JS work).</p> <p>Also one of the largest benefits of starting with JS is that although you might switch server side languages you'll most likely still be using JavaScript!</p> http://stackoverflow.com/questions/8921/how-can-you-tell-whether-youre-ready-to-start-your-own-blog/8958#8958 4 Answer by James Marshall for How can you tell whether you're ready to start your own blog? James Marshall 2008-08-12T15:22:40Z 2008-08-12T15:22:40Z <p>I'm a bit biased (my blogging is extremely sporadic), but I don't think it's important to blog regularly - unless you're doing it for some financial gain and trying to garner a regular readership.</p> <p>If you're too concerned with regular/frequent posts then often you'll just end up churning out garbage - choose quality over quantity every time!</p> <p>If you can get your feed aggregated by a service targeted at a relevant niche you'll have an audience for every post and you won't feel obliged to keep up any particular pace. Some weeks you'll have a lot to say, others, not so much...</p> <p>Also, don't presume that it's ineveitable to blog - only do it if you enjoy it and think you'll get something out of it, otherwise your time (and effort) may be better spent elsewhere.</p> http://stackoverflow.com/questions/8893/anyone-know-of-an-on-line-free-database/8913#8913 0 Answer by James Marshall for Anyone know of an on-line free database? James Marshall 2008-08-12T14:48:43Z 2008-08-12T14:48:43Z <p>Sounds like you need <a href="http://www.amazon.com/SimpleDB-AWS-Service-Pricing/b?ie=UTF8&amp;node=342335011" rel="nofollow" title="http://www.scribd.com/doc/2547864/msnetformattingstrings">Amazon SimpleDB</a>...</p> <p>It's not free, but pricing looks pretty good. I've not used it myself, but when I've got a bit of spare time I might use it for a project I'm working on.</p> <p>Maybe you've found an unserviced niche?!</p> http://stackoverflow.com/questions/6611/ie6-to-support-or-not-to-support/8839#8839 3 Answer by James Marshall for IE6: To support or not to support. James Marshall 2008-08-12T13:51:18Z 2008-08-12T14:40:06Z <p>At my day job IE7 is our standard, although I use FF for development...</p> <p>Basically: Code using FF, tweak for IE7, then spend a few hours getting it somewhere close to the same in IE6...</p> <p>We've just bought in some back office software from a 3rd party company and were told they would support <em>either</em> IE6 or IE7. While this might work for internal apps I reckon we should still be supporting IE6 on public sites for a while yet.</p> http://stackoverflow.com/questions/2348/what-is-the-best-way-to-iterate-through-an-array-in-classic-asp-vbscript/8889#8889 0 Answer by James Marshall for What is the best way to iterate through an array in Classic Asp VBScript? James Marshall 2008-08-12T14:34:32Z 2008-08-12T14:34:32Z <p>I've always used For Each...</p> http://stackoverflow.com/questions/8702/what-is-the-ide-for-classic-asp-and-vbscript/8883#8883 1 Answer by James Marshall for What is the IDE for classic ASP and VBScript? James Marshall 2008-08-12T14:30:10Z 2008-08-12T14:30:10Z <p>For a fully fledged IDE try and track down Visual Interdev, but there are a couple of nice text editors with good support for Classic ASP. My personal favorites are <a href="http://www.ultraedit.com/" rel="nofollow" title="http://www.scribd.com/doc/2547864/msnetformattingstrings">UltraEdit</a> (commercial) and <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow" title="DNR TV">Notepad++</a> (OSS). UltraEdit is also a great general purpose text editor that will let you open huge files that other editors sometimes choke on (e.g. Apache log files)...</p> http://stackoverflow.com/questions/449218/why-is-coldfusion-so-unpopular Comment by James Marshall on Why is ColdFusion so unpopular? James Marshall 2009-01-16T12:31:08Z 2009-01-16T12:31:08Z Ummm - it's not &quot;unpopular&quot;, just &quot;less popular&quot; than languages like PHP which due to their free nature will always attract a greater user base (not to mention plenty of fanboys!)... http://stackoverflow.com/questions/449218/why-is-coldfusion-so-unpopular/449334#449334 Comment by James Marshall on Why is ColdFusion so unpopular? James Marshall 2009-01-16T12:29:49Z 2009-01-16T12:29:49Z If you're talking about CFEclipse as an Eclipse plugin (I don't know of any others) it <i>does</i> have code insight. It's actually quite a reasonable IDE, but the niggle for me is having to use Apatana or similar for CSS etc. http://stackoverflow.com/questions/420510/why-did-the-designers-of-coldfusion-decide-to-index-arrays-from-1-rather-than-0/420548#420548 Comment by James Marshall on Why did the designers of Coldfusion decide to index arrays from 1 rather than 0? James Marshall 2009-01-07T17:08:53Z 2009-01-07T17:08:53Z As David says, most Basics start arrays at 1. At the time when CF first emerged it was competing with Classic ASP, which was/is typically coded using VBscript, a subset of Visual Basic. http://stackoverflow.com/questions/398600/why-would-someone-develop-a-new-application-in-cold-fusion/412627#412627 Comment by James Marshall on Why would someone develop a new application in Cold Fusion? James Marshall 2009-01-06T12:33:19Z 2009-01-06T12:33:19Z It's a reputation system - you could simply have posted a reply - deal with it. http://stackoverflow.com/questions/276737/normalizing-an-existing-ms-access-database/276953#276953 Comment by James Marshall on Normalizing an existing MS Access Database James Marshall 2008-11-14T10:13:04Z 2008-11-14T10:13:04Z This is an excellent and well detailed response. Wish I could vote for it more than once! http://stackoverflow.com/questions/229666/entity-relationship-diagram-for-ms-access/229751#229751 Comment by James Marshall on Entity Relationship Diagram for MS Access James Marshall 2008-10-24T09:37:26Z 2008-10-24T09:37:26Z Well I now feel stupid! I already have tools that'll let me connect via ODBC, but it's so long since I've used Access it didn't even occur to me! http://stackoverflow.com/questions/229666/entity-relationship-diagram-for-ms-access Comment by James Marshall on Entity Relationship Diagram for MS Access James Marshall 2008-10-24T09:36:04Z 2008-10-24T09:36:04Z Surely it should be &quot;file-access&quot; then and &quot;access&quot; in isolation should be removed?