User anopres - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T10:00:32Zhttp://stackoverflow.com/feeds/user/1537http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1054136/cant-create-flex4-project-in-flexbuilder-using-remoting-or-livecycle-data-servci0Can't create flex4 project in flexbuilder using remoting or LiveCycle Data Servcies ESanopres2009-06-28T03:05:45Z2009-10-18T05:38:16Z
<p>I'm trying out the FlasBuilder ide with ColdFusion 8 on OS X. When I try to create a new project, I get stuck at the server setup screen that forces you to validate your paths for your ColdFusion root folder and your webroot. Every combination I try says either "LiveCycle Data Services is not installed at the specified location" or "Invalid root. The WEB-INF/flex folder must contain either flex-config.xml or services-config.xml." The flex-config.xml file is sitting in that directory.</p>
<p>Is there some trick to getting this to work?</p>
http://stackoverflow.com/questions/1394806/enable-sys-guest-and-informationschema-users-in-sql-server2Enable sys, guest and information_schema users in SQL Serveranopres2009-09-08T15:59:34Z2009-09-28T15:36:30Z
<p>I had a script run against one of my databases that attempted to drop a bunch of users. All the users that had the drop attempted against them were disabled and displayed the little red down arrow on their icon in Management Studio.</p>
<p>I was able to revive all of the normal users by issuing the "alter login <em>myLogin</em> enable" command. However, when I try to do that against the sys, guest or information_schema users, I get the "Cannot alter the login '<em>myLogin</em>', because it does not exist or you do not have permission. I'm logged in as a system administrator.</p>
<p>How do I enable these accounts?</p>
http://stackoverflow.com/questions/132872/how-to-improve-your-dev-teams-joel-test-score/1472555#14725550Answer by anopres for How to improve your dev team's Joel Test score?anopres2009-09-24T15:48:10Z2009-09-24T15:48:10Z<p>I have mixed feelings about #11. On the one hand, I think a few casual interview white board questions can be very misleading. Candidates don't always expect it, they are nervous and asked to code in front of an audience. Gah! On the other hand, I feel like you could get a feel for how someone would fit in your organization with a short computer quiz.</p>
<p>If you use a temp service with temp to hire, does that count if you do code reviews on their early work? Then the job becomes the quiz.</p>
http://stackoverflow.com/questions/1260754/why-isnt-the-default-for-cflocation-addtoken-equal-to-no/1260799#126079910Answer by anopres for Why isn't the default for cflocation addtoken equal to no?anopres2009-08-11T14:40:05Z2009-08-11T14:40:05Z<p>If I recall correctly, the only reason for it being that way is for some backward compatibility issues way back in something like version 1.0 where originally, you had to always pass that information around to maintain your application state.</p>
<p>When the technology moved on, they added the addtoken attribute but left the default so it wouldn't break a bunch of existing code. Now, it's sort of like our appendix and is not used for much. They could probably change the default at this point without much impact.</p>
http://stackoverflow.com/questions/337208/how-does-a-user-insert-a-null-in-ms-access1How does a user insert a null in MS Access?anopres2008-12-03T14:09:37Z2009-08-04T07:06:38Z
<p>MS Access appears to support nulls in code, but I can't for the life of me figure out how to enter a null directly in a table. This is maddening because once a field has had a figure entered in it, it can never be deleted/set to null. Normally, allowing zero length strings would take care of this, but Access treats the XML export of a null and a zero length string differently. A null eliminates the associated XML tag and a zero length string sends an empty tag.</p>
http://stackoverflow.com/questions/637105/what-is-the-best-way-to-put-a-flex3-project-under-source-control-subversion1What is the best way to put a Flex3 project under source control (subversion)anopres2009-03-12T01:51:46Z2009-07-06T17:40:19Z
<p>Setting up Flex project for group development can be a bit tricky. There are lots of little local settings that might need to be tweaked in order to have a project that can be easily checked out.</p>
<p>I've had limited success using the built-in import/export flex project utilities. I seem to wind up editing by hand a lot and I think I might be missing something.</p>
<p><strong>UPDATE</strong>
I neglected to mention originally that my goal is to make it possible to checkout a project from subversion and get up and running with as little fuss as possible. The biggest problems that I have run into all revolve around managing the "dot" files and how to make them flexible enough to deal with different developer environments.</p>
<p>For example, even with just me, I would like to have this ability: at work, I use a Vista machine and at home I use a Mac. There are certainly differences in the way certain paths are described, but they really are quite similar. On Vista, the flex root is c:/ColdFusion8/wwwroot, on OS X, it is /Applications/ColdFusion8. I have been able to set up a linked resource path variable for both CF_FLEX_SERVER and WEBSERVER that I then reference using the ${WEBSERVER}/myProject syntax.</p>
<p>So far, it seems to work pretty well, but I find there are a few places that it still has issues. Specifically, in the .project file you find something like:</p>
<pre><code><linkedResources>
<link>
<name>bin-debug</name>
<type>2</type>
<location>c:/inetpub/wwwroot/myProject-debug</location>
</link>
</linkedResources>
</code></pre>
<p>Unfortunately, if I try to change the location entity to ${WEBSERVER}/wwwroot/myProject-debug, flex throws a compiler error. That's a shame, because pretty much everything else works.</p>
http://stackoverflow.com/questions/704930/html-form-within-mail-client/1075013#10750130Answer by anopres for html form within mail clientanopres2009-07-02T15:18:59Z2009-07-02T15:18:59Z<p>This idea is plainly wrong. You're creating a phishing vector for your company which could expose them to huge legal liability. Just ask them how much money they are going to be putting into the legal defense fund in order to pay out for the lawsuits they are going to lose.</p>
<p>An adobe pdf server is about the only reasonable method for doing this, but that takes lots of cash and work on your network to support a new type of server.</p>
http://stackoverflow.com/questions/947530/coldfusion-cfhttp-post-is-doing-a-second-get-request-right-after/964791#9647910Answer by anopres for ColdFusion CFHTTP Post is doing a second GET request right afteranopres2009-06-08T12:59:18Z2009-06-08T12:59:18Z<p>If you are using firefox, make sure you have firebug and ySlow turned off for your request. They fire your urls twice to set up their data and can be a real problem when you don't know that they are doing that. </p>
<p>Also, try turning the redirect off unless you need it.</p>
http://stackoverflow.com/questions/907981/can-you-change-the-design-mode-grid-in-flex-builder0Can you change the design mode grid in flex builder?anopres2009-05-25T20:34:43Z2009-05-25T20:34:43Z
<p>This is probably a rtfm question, but I'll ask anyway since others may be looking for guidance here.</p>
<p>Is there a way to change/view the properties of the design mode grid that components snap to in Flex Builder. I've been all through the properties in eclipse and I can't seem to find a way to change it. Can it be set to anything other than 10 pixels?</p>
http://stackoverflow.com/questions/777269/what-is-the-best-practice-for-storing-boolean-values-in-sql4What is the best practice for storing boolean values in SQL?anopres2009-04-22T13:46:03Z2009-04-22T18:51:34Z
<p>Are there reasons for not storing boolean values in SQL as bit data types without NULL? I see them often stored as integers without constraints to limit values to 0 and 1, and as strings with things like T/F, True/False, yes/no, etc., again without constraints. Isn't it better to store them as bits and not have to worry about additional constraints? What am I missing here?</p>
http://stackoverflow.com/questions/703288/my-subclipse-colors-dont-work0My subclipse colors don't workanopres2009-03-31T22:13:33Z2009-04-02T22:28:37Z
<p>This is probably a simple issue for some subclipse guru. My decorator colors don't work in eclipse. I'm guessing that some plugin I have is interfering with it somehow. I'm on the current public release of ganymede. Going to the fonts and colors option area lets me change the decorator text color, but I get no effect in the project explorer. Any ideas?</p>
http://stackoverflow.com/questions/666916/eclipse-ganymede-startup-on-64-bit-vista-is-really-slow1Eclipse Ganymede startup on 64 bit vista is really slowanopres2009-03-20T16:28:11Z2009-03-21T15:34:53Z
<p>I've just changed computers at work and now have a really beefy 64bit Vista os. Currently I'm still slogging through the pile of quirks (like no 64bit drivers for ms access) and I've noticed that my startup time for eclipse is a LOT longer than it was on 32bit Vista. I have almost nothing in my workspace yet, so that knocks out most of the change/rebuild workspace issues. I've used the -clean option a few times and nothing seems to change it.</p>
<p>I'm not running the 64bit version of eclipse, just because it seemed like too much trouble right now with all my other issues getting the machine back into a stable state. It also seems like 64bit eclipse is still pretty rough around the edges since it doesn't appear to have actually been released yet.</p>
<p>Any clues about what I can try to speed things up? Once it's running, it seems to work fine.</p>
<p>TIA</p>
http://stackoverflow.com/questions/612059/how-do-you-structure-your-entities-you-intend-to-reuse0How do you structure your entities you intend to reuse?anopres2009-03-04T19:24:54Z2009-03-04T22:33:25Z
<p>Lets say you have the following entities in your database:</p>
<p><img src="http://lh6.ggpht.com/%5FUpGtM3B8h1U/Sa7SqfWmgDI/AAAAAAAAAHE/epqtm7EnoFg/test.gif" alt="Image" /></p>
<p>You want to be able to add a note to all three of the other entity tables (User, Client and Project). How would you set this up?</p>
<ol>
<li>Add a tableName and a FKId to the Note table?</li>
<li>Create a separate table for each associated Note group (ie., ClientNote, UserNote)</li>
<li>Create a separate field in Note for each Foreign key (UserId, ClientId, etc)</li>
</ol>
<p>I seem to be going back and forth between option 2 and 3, although I'd be up for 1 if there were an elegant implementation. Option 2 is attractive because there are no nulls. Option 3 is attractive because a note feels like a note no matter what it is associated with.</p>
<p>Any thoughts? </p>
http://stackoverflow.com/questions/604909/why-dont-people-use-cflogin/605030#6050305Answer by anopres for Why don't people use <CFLOGIN>?anopres2009-03-03T03:42:27Z2009-03-03T03:42:27Z<p>I use cflogin all the time and it works great. It can be a little tricky to get working the way you like, but the benefits are huge. Being able to fine tune your application with user roles takes care of the bulk of my rights based customization. There used to be some issues with session management that made it difficult to work with. Turning on j2ee sessions seems to make most of those issues go away. </p>
<p>Some of the popular frameworks are not compatible with cflogin, so that might be one reason you don't see a lot of it. They tend to have their own approach to securing application features.</p>
<p>I think a lot of people get frustrated with it because it is a little quirky and they give up on it. Others have more complicated security needs that aren't addressed completely by cflogin, so they wind up writing their own system. Specifically, there isn't an easy way to deal with rights by content asset.</p>
http://stackoverflow.com/questions/583160/how-to-stop-flex-air-xor-ing-a-fill/583187#5831870Answer by anopres for How to stop Flex / AIR XOR-ing a fill?anopres2009-02-24T19:24:15Z2009-02-24T19:24:15Z<p>Wouldn't you need to create a second graphic object to apply the second fill to? I bet you really have one strangely shaped graphic object instead of two intersecting rectangles.</p>
http://stackoverflow.com/questions/540694/is-coldfusion-a-good-choice-for-web-development/541404#5414049Answer by anopres for Is ColdFusion a good choice for web development?anopres2009-02-12T14:14:27Z2009-02-23T14:18:37Z<p>This question about ColdFusion tends to come up repeatedly on Stack Overflow. I posted a <a href="http://stackoverflow.com/questions/234296/coldfusion-vs-php#235366">detailed response</a> if you care to read any more about it. <a href="http://stackoverflow.com/questions/540694/is-coldfusion-a-good-choice-for-web-development/540720#540720">Annakata</a> left out one important point about CF. With CF, you can <em>just get things done</em>. </p>
<ul>
<li><p>Need a PDF of the page? There's
something for that.</p></li>
<li><p>Need a quick query? SOME SQL HERE. That's it.</p></li>
<li><p>Need a fancy graph? It's in there.</p></li>
<li><p>Need a blindingly fast back end for flash/flex? Got that too.</p></li>
<li><p>Need to run your app on more than one OS? How about Windows, OS X, Linux, Solaris, even AIX.</p></li>
<li><p>Need to create a web service? Just create a basic component and set <code>access=remote</code>. Instant web service.</p></li>
<li><p>Want to take advantage of Java? You can make direct calls to the JVM.</p></li>
<li><p>How about .NET assemblies at the same time? Yep. CF can act as a proxy between .NET and java libraries. (there are quite a few restrictions on the .NET side, though)
How about sending a message directly to GTalk or AIM? It's built in.</p></li>
</ul>
<p>All of that stuff is pretty darn easy to accomplish in CF. In many cases, you're talking about one or two lines of code.</p>
http://stackoverflow.com/questions/542396/coldfusion-linux-enctype/544531#5445310Answer by anopres for Coldfusion linux enctypeanopres2009-02-13T02:34:54Z2009-02-13T02:34:54Z<p>You've probably already tried this, but have you tried all upper-case or all lowercase in your paths and file names? Sometimes CF will mangle the upper/lower case thing.</p>
http://stackoverflow.com/questions/531461/how-do-you-reference-unicode-characters-in-coldfusion-regex/532784#5327845Answer by anopres for How do you reference unicode characters in Coldfusion regex?anopres2009-02-10T15:26:02Z2009-02-10T15:26:02Z<p>It looks like the \x shorthand in CF only supports the first 255 ASCII characters. In order to go above that number, you need to use the chr command inline like this:</p>
<pre><code><cfscript>
yourString = "’";
result = refind("[[:alpha:]'" & chr(8217) & "]{2,10}", yourString);
writeOutput(result);
</cfscript>
</code></pre>
<p>That should give you a match.</p>
http://stackoverflow.com/questions/234296/coldfusion-vs-php/235366#23536645Answer by anopres for ColdFusion vs PHPanopres2008-10-24T21:45:58Z2009-02-05T16:39:01Z<p>Wow, there is really a lot of misleading or plain wrong information here in the comments about ColdFusion. I know next to nothing about PHP, so I'm not going to comment on any of it. I've been using ColdFusion for about 12 years and I think I can shed some light on it for you.</p>
<p>First, ColdFusion is not dead or dying and never has been. Allaire certainly kept it rolling since it was their flagship product, Macromedia constantly had it under development, and <a href="http://www.codersrevolution.com/index.cfm/2008/9/17/A-Look-Into-ColdFusions-Future-Centaur-Sully-Link" rel="nofollow">Adobe is about to release version 9 with 10 and 11 already in the pipeline</a>, although 11 is little better than a somewhat credible rumor at this point.</p>
<p>The absolute best thing about ColdFusion is that it lets you develop the way you want. If you're just doing a simple brochure website and you need a little dynamic spice added to a few pages, you can just put them in there. No need to build out an entire application scaffolding when all you need is a pair of functions.</p>
<p>On the other hand, developing very large, object-oriented, framework driven applications is also possible. There are large multi-year projects running with as many as 40 developers at the Social Security Administration, the Food and Drug Administration, The Kennedy Center, the State Department, etc. (I live near DC, if you couldn't tell.) ColdFusion has had object-oriented features since version 6 when it was changed from a stand-alone application written in c++ to a Java library that runs on many J2EE servers.</p>
<p>If you need to manage your team's coding practices, there are many mature/stable frameworks available to help you out. I saw that <a href="http://www.fusebox.org" rel="nofollow">Fusebox</a> was mentioned earlier, and that is one of the strongest ones for MVC. There are others, though, and even Fusebox is not stuck at version 3 which seems to be the last time most people looked at it. <em>shameless plug warning--></em> I even do some work on a thing called <a href="http://www.mxunit.org" rel="nofollow">MXUnit</a>, which is a unit testing framework for CF.</p>
<p>Many if not most CF developers now use Eclipse as their primary coding tool because of all the other Eclipse plugins that platform brings with it. The main FOSS plugin for ColdFusion is called <a href="http://www.cfeclipse.org/" rel="nofollow">CFEclipse</a>. If you have more of a designer approach to developing, Dreamweaver is for you but you have to pony up the cash for that. Adobe has also shown us some love with a set of line debugging tools for Eclipse as well as connectors to the server that let you inspect your objects remotely as well as manipulate files and databases. Rumor has it that Adobe is thinking about developing an über IDE using Eclipse along the lines of what IBM has done.</p>
<p>If you need to do development on a shoestring, the development version of ColdFusion is free. So are some of the other CFML servers such as the <a href="http://www.smithproject.org/" rel="nofollow">SmithProject</a>, Railo and <a href="http://www.newatlanta.com/products/bluedragon/" rel="nofollow">BlueDragon</a> on J2EE. Shared hosting is very reasonable, although not as widespread as some other technologies. It's best to use somebody that is aware of ColdFusion like HostMySite.com if you are going to go that route. If you're hosting yourself, save the cost of an OS and run it on Linux with MySQL or PostgreSQL.</p>
<p>Use of CFScript gives you a more Javascript-like syntax if you don't care for the tag brackets, although with version 8, all features are not supported in script. You can write wrappers for some of them if you want. Version 9 is supposed to support a Javascript-like syntax for all object coding.</p>
<p>One of the things about ColdFusion often overlooked is that it is probably the best server-side technology for creating the service layer for applications written in Flex. Even the Adobe people fail to mention that very often, probably out of fear that the CF stigma might somehow attach itself to Flex. That's unfortunate becase CF supports the amf protocol out of the box as well as allowing you to pass typed objects between it and Flex/flash.</p>
<p>The developer community for ColdFusion is also alive and well. If fact, many people think that the ColdFusion bloggers were a big reason that Adobe purchased Macromedia. Certainly, social tools tend to wax and wane as people come and go and technologies change. While the ColdFusion forums used to be a big gathering place, it seems like a lot more activity has gravitated to blogs and aggregators. And now, even a little Stack Overflow ;).</p>
<p>Personally, I wouldn't bother with the code/port process. That's just too much unnecessary work for a new project.</p>
<p>Lastly, I don't understand the comments about performance, really. ColdFusion compiles down to Java classes and runs on a J2EE server. It's going to be about as fast as anything else that runs with that sort of architecture with a few exceptions. Each release seems to make significant gains in performance as well. It's possible to bring any server to its knees with unscalable coding procedures, but there is nothing that says you have to code that way.</p>
<p>I guess the real trick is to make sure you get credible information about the platforms in order to make an informed decision. That can be hard to do sometimes in a community driven site since it's easy to spout off (like I'm doing) and hard to post references for everything you say (like I'm not doing).</p>
<p>Good Luck!</p>
http://stackoverflow.com/questions/299312/double-click-text-selection-in-cfeclipse/503282#5032821Answer by anopres for Double click text selection in CFEclipseanopres2009-02-02T14:00:02Z2009-02-02T14:00:02Z<p>CFEclipse does not recognize either the underscore or a period as a character for selecting text with a double-click. There is no way that I know of other than rolling your sleeves up and hacking the editor code to change it. I doubt that this will be changed any time soon with the impending release of Bolt from Adobe.</p>
http://stackoverflow.com/questions/223376/looking-for-a-good-bulk-insert-xml-shredding-example-for-sql-20051Looking for a good Bulk Insert XML Shredding example for SQL 2005anopres2008-10-21T20:28:15Z2009-01-30T10:54:19Z
<p>A little help needed. I'm receiving an xml file similar to this:</p>
<pre><code><?xml version="1.0" encoding="utf-16"?>
<dc:GRANTEE xsi:schemaLocation="http://www.blahblahblah.com/FullSchema test.xsd " xmlns:dc="http://www.blahblahblah.com/FullSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<RPGID>90CU0024</RPGID>
<PLANID>01</PLANID>
<CASE>
<CASEID>100001</CASEID>
<RPGID>90CU0024</RPGID>
<FILE_O>2008-02-08T00:00:00</FILE_O>
<ADULT>
<ADULTID>100001A1</ADULTID>
<CASEID>100001</CASEID>
<APRIMARY>1</APRIMARY>
<ARLTNSHP>BM</ARLTNSHP>
<ADOB>1978-12-03T00:00:00</ADOB>
<ARACAI>1</ARACAI>
<ASEX>2</ASEX>
<SATX>
<SATXID>MD2120378</SATXID>
<ADULTID>100001A1</ADULTID>
<SAASSESS>2008-02-22T00:00:00</SAASSESS>
<PUBPRVTX>1</PUBPRVTX>
<TXADMIT>2008-02-23T00:00:00</TXADMIT>
<TXSET>5</TXSET>
</SATX>
</ADULT>
<CHILD>
<CHILDID>100001C1</CHILDID>
<CASEID>100001</CASEID>
<CINDEX>1</CINDEX>
<CHBDATE>2008-02-05T00:00:00</CHBDATE>
<CHSEX>1</CHSEX>
<CHRACAI>0</CHRACAI>
<MALTX>
<MALTXID>10000023</MALTXID>
<CHILDID>100001C1</CHILDID>
<RPTDT>2008-02-05T00:00:00</RPTDT>
<CHMAL1>2</CHMAL1>
</MALTX>
</CHILD>
</CASE>
</code></pre>
<p></p>
<p>What I need to do is import it and shred it to tables with a stored proc. I've been unable to find anything other than general regurgitation of the examples in the books online, uh, online. what I need is a little syntax walk-through that shows how I can bulk insert the file (using OPENROWSET?) and then take all of the data and split it to matching tables while maintaining keys. It seems like it should be easy, but the reference material is just hard to come by. I also have access to schema if I need that and can annotate as well.</p>
<p>Anybody have a good reference?</p>
http://stackoverflow.com/questions/449218/why-is-coldfusion-so-unpopular/449443#4494432Answer by anopres for Why is ColdFusion so unpopular?anopres2009-01-16T03:47:32Z2009-01-16T03:47:32Z<p>Not this again. Okay, check out this post: <a href="http://stackoverflow.com/questions/234296/coldfusion-vs-php#235366">http://stackoverflow.com/questions/234296/coldfusion-vs-php#235366</a></p>
http://stackoverflow.com/questions/337208/how-does-a-user-insert-a-null-in-ms-access/337898#3378980Answer by anopres for How does a user insert a null in MS Access?anopres2008-12-03T17:01:22Z2008-12-03T17:01:22Z<p>Ok, I don't think this is an easily solvable problem and my original question was a little off target. The problem isn't so much with nulls, although they are involved, as with the manner in which the table was originally created. If you use an xsd file to create your tables you plan on exporting, something happens under the hood in Access that causes those fields to be treated a little differently than fields created with the editors. </p>
<p>The only solution I found was to create a new field in the table, rename the old field, copy the data from the old field to the new field and delete the old field.</p>
<p>After doing that, then blank fields that had data in them at one point are no longer included in the XML output. It's probably not the best way to do this, and I still don't know exactly why it's happening, but at least I can get past the issue.</p>
http://stackoverflow.com/questions/337208/how-does-a-user-insert-a-null-in-ms-access/337354#3373540Answer by anopres for How does a user insert a null in MS Access?anopres2008-12-03T14:47:20Z2008-12-03T14:47:20Z<p>I'm actually looking for a way for a layperson to do the entry directly in a table. In MSSQL you can simply press ctrl-0 and a null is inserted. Deleting all the characters doesn't appear to work. Instead of a null, you are left with an empty string. They are not treated the same by Access for export purposes.</p>
<p>I think what I'm going to wind up doing is creating an xslt file to use during export that eliminates empty tags. That way the user can't really tell the difference.</p>
<p>It sure would be nice, though, to be able to key in a null.</p>
http://stackoverflow.com/questions/218070/best-database-with-coldfusion-on-os-x/235387#2353871Answer by anopres for Best Database With ColdFusion on OS Xanopres2008-10-24T21:56:28Z2008-11-10T16:43:53Z<p>Both PostgreSQL and MySql are good options, especially if you can use those in your production environment. That being said, Derby (the full version, not the embedded version that ships with cf) is being targeted at the enterprise. I'd really like to hear about someone that has pushed some of the limits of Derby with or without CF. The whole written in java thing is very appealing, but seems like it might have issues with performance because it isn't written in a lower level language.</p>
http://stackoverflow.com/questions/277943/have-you-tinkered-with-rel1Have you tinkered with Rel?anopres2008-11-10T14:10:57Z2008-11-10T16:41:21Z
<p>I would like to hear opinions or peoples experiences regarding <a href="http://dbappbuilder.sourceforge.net/Rel.php" rel="nofollow">Rel</a>. Is it destined for the dustbin, or is it the next big thing in programming? I haven't tried doing anything with it yet (and it looks like you really can't at this point), but I'm intrigued by a few of the concepts discussed in it. Notably:</p>
<ol>
<li>Removal of nulls completely from the data handling part of the language.</li>
<li>No need for mapping types between the language and the data storage.</li>
<li>Nesting tables</li>
<li>Complete separation of design and implementation.</li>
</ol>
<p>Thoughts?</p>
http://stackoverflow.com/questions/277943/have-you-tinkered-with-rel/278407#2784070Answer by anopres for Have you tinkered with Rel?anopres2008-11-10T16:41:21Z2008-11-10T16:41:21Z<p>Right, I agree with you Tony. The interesting thing for me, though, is that Rel is a somewhat working implementation with the understanding that it is essentially a working version of Tutorial D. The thought being that some well funded enterprise takes the research and decides that something like an Industrial D might be worthwhile.</p>
<p>Maybe I'm wrong here, but I get the impression that while Tutorial D is primarily a data language, it has the potential to move into the application space as well. That seems pretty ground-breaking to me. Of course, after reading some of the stuff from Date, Darwen, Pascal, and others, it seems like the language may have the goal of supplanting object oriented programming in general. Right now, OO appears to rule the world of programming. Rel would make available an alternative view on programming in general.</p>
<p>So I guess what I'm curious about is whether this project has legs that leads to other products or if people think it's going to be just a historical curiosity. </p>
http://stackoverflow.com/questions/266586/coldfusion-adding-extra-quotes-when-constructing-database-queries-in-strings/277896#2778960Answer by anopres for Coldfusion adding extra quotes when constructing database queries in stringsanopres2008-11-10T13:51:25Z2008-11-10T13:51:25Z<p>fwiw, rumor has it that the next version of ColdFusion will provide a good deal of love to the cfscript enthusiasts. It will be interesting to see if/how adobe crafts the cfquery for script. I'm really looking forward to that.</p>
http://stackoverflow.com/questions/263342/when-to-call-the-gang-of-four-when-to-use-design-patterns/263425#2634258Answer by anopres for When to call the gang of four? [When to use design patterns?]anopres2008-11-04T20:58:58Z2008-11-04T20:58:58Z<p>I think the GoF guys answer this specific question directly in one of their design pattern books. It really all boils down to this:</p>
<p>It's time to implement a design pattern when you fell the pain of not having it in place. So the trick is to be aware that they exist and know generally what they are for or do. Then when you start to "feel the pain" look into implementing the appropriate pattern.</p>
http://stackoverflow.com/questions/244447/what-are-the-best-resources-for-getting-better-with-sql/244533#2445332Answer by anopres for What are the best resources for getting better with SQL?anopres2008-10-28T19:31:41Z2008-10-28T19:31:41Z<p>I tend to have two types of references that I use for SQL. Practical and theoretical.</p>
<p>The practical references help you get the immediate task done, but leave you hanging when it comes to real knowledge. The theoretical texts help you learn about the science of data, but do little for helping with any specific problem.</p>
<p><strong>Practical Referecees</strong></p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0201615762" rel="nofollow">The Guru's Guide to Transact-SQL</a> by Ken Henderson</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/1558609202" rel="nofollow">Trees and Hierarchies in SQL for Smarties</a> by Joe Celko: Nice discussion of a frequently difficult topic in SQL</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/059652708X" rel="nofollow">MySQL Cookbook</a> by Paul Dubois</p>
<p>and of course MS Books Online</p>
<p><strong>Theoretical References</strong></p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0201485559" rel="nofollow">Practical Issues in Database Management</a> by Fabian Pascal: great stuff, almost implementable theory.</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0596100124" rel="nofollow">Database in Depth: Relational Theory for Practitioners</a> by C.J. Date (warning: this is a difficult read)</p>
<p>And if you really want to drink the KoolAid, <a href="http://dbappbuilder.sourceforge.net/Rel.php" rel="nofollow">Rel</a></p>
http://stackoverflow.com/questions/1394806/enable-sys-guest-and-informationschema-users-in-sql-server/1394904#1394904Comment by anopres on Enable sys, guest and information_schema users in SQL Serveranopres2009-09-28T15:34:04Z2009-09-28T15:34:04Zok, that works for the guest account, but the sys and information_schema accounts throw "Cannot grant, deny, or revoke permissions to sa, dbo, entity owner, information_schema, sys, or yourself" errors. Any thoughts?http://stackoverflow.com/questions/1394806/enable-sys-guest-and-informationschema-users-in-sql-serverComment by anopres on Enable sys, guest and information_schema users in SQL Serveranopres2009-09-08T16:41:24Z2009-09-08T16:41:24Z2005 with 2008 client tools
http://stackoverflow.com/questions/1394806/enable-sys-guest-and-informationschema-users-in-sql-server/1394904#1394904Comment by anopres on Enable sys, guest and information_schema users in SQL Serveranopres2009-09-08T16:40:44Z2009-09-08T16:40:44ZI'll buy that. That makes perfect sense. I guess my question then is why do they show up under the databases as disabled with the little red down arrow?
http://stackoverflow.com/questions/337208/how-does-a-user-insert-a-null-in-ms-accessComment by anopres on How does a user insert a null in MS Access?anopres2009-08-11T14:34:42Z2009-08-11T14:34:42Z@onedaywhen, I was referring to those things that access calls "tables". Also, don't even bother going all tuple/relation on us when we're talking about MS Access.
http://stackoverflow.com/questions/337208/how-does-a-user-insert-a-null-in-ms-access/1226032#1226032Comment by anopres on How does a user insert a null in MS Access?anopres2009-08-11T14:25:19Z2009-08-11T14:25:19ZThis does not work with Access 2007. How did you get this to work?http://stackoverflow.com/questions/234296/coldfusion-vs-php/235366#235366Comment by anopres on ColdFusion vs PHPanopres2009-07-14T15:16:32Z2009-07-14T15:16:32ZGee Nelson, you've convinced me. I'm going to use PHP from now on. I'm really looking forward to setting up amf and object serialization to flash.
http://stackoverflow.com/questions/703288/my-subclipse-colors-dont-work/711872#711872Comment by anopres on My subclipse colors don't workanopres2009-04-03T13:37:19Z2009-04-03T13:37:19ZI'm using Vista 64 with 32 bit eclipse. I've since noticed that the colors DO work in certain perspectives. I must have some plugin that's misbehaving.http://stackoverflow.com/questions/666916/eclipse-ganymede-startup-on-64-bit-vista-is-really-slow/667120#667120Comment by anopres on Eclipse Ganymede startup on 64 bit vista is really slowanopres2009-03-23T13:12:21Z2009-03-23T13:12:21ZThe settings you listed in your other post did the trick. Just a matter of tuning I guess. Now eclipse launches in about 20 seconds.http://stackoverflow.com/questions/666916/eclipse-ganymede-startup-on-64-bit-vista-is-really-slow/667120#667120Comment by anopres on Eclipse Ganymede startup on 64 bit vista is really slowanopres2009-03-21T15:39:55Z2009-03-21T15:39:55ZI'm actually looking forward to using the 64bit version of eclipse, but I know I have a few important plugins that won't work in it yet. :(http://stackoverflow.com/questions/666916/eclipse-ganymede-startup-on-64-bit-vista-is-really-slowComment by anopres on Eclipse Ganymede startup on 64 bit vista is really slowanopres2009-03-21T15:38:48Z2009-03-21T15:38:48Zok, data. What once took about 45seconds to launch now takes 3+minutes, usually more if there have been changes to the plugins and it's the first launch.http://stackoverflow.com/questions/666916/eclipse-ganymede-startup-on-64-bit-vista-is-really-slow/666945#666945Comment by anopres on Eclipse Ganymede startup on 64 bit vista is really slowanopres2009-03-21T15:36:09Z2009-03-21T15:36:09ZI've got 8gigs of ram on this puppy, so I'll definitely give this a shot.
http://stackoverflow.com/questions/662427/flex-or-silverlight/662595#662595Comment by anopres on Flex or Silverlightanopres2009-03-19T15:45:53Z2009-03-19T15:45:53ZSo do you really think Silverlight is going to run on an iPhone? At least Flash has a chance of doing that eventually.http://stackoverflow.com/questions/637105/what-is-the-best-way-to-put-a-flex3-project-under-source-control-subversion/637114#637114Comment by anopres on What is the best way to put a Flex3 project under source control (subversion)anopres2009-03-12T16:09:40Z2009-03-12T16:09:40ZEclipse on the mac rewrites the path with linked variables and Vista just throws a compile error.http://stackoverflow.com/questions/637105/what-is-the-best-way-to-put-a-flex3-project-under-source-control-subversion/637114#637114Comment by anopres on What is the best way to put a Flex3 project under source control (subversion)anopres2009-03-12T16:09:09Z2009-03-12T16:09:09ZFor me, it looks like I need to pull .properties out of source control since the OS X vs. Vista pathing is a mess. I'm tinkering with a .properties_template that I might put under source control that can be quickly modified. http://stackoverflow.com/questions/637105/what-is-the-best-way-to-put-a-flex3-project-under-source-control-subversion/637745#637745Comment by anopres on What is the best way to put a Flex3 project under source control (subversion)anopres2009-03-12T14:03:08Z2009-03-12T14:03:08ZHow would this have worked if it was somebody else's project and you were the second developer to get the code? I'm trying to use the linked resources variables, but they seem not to work in some places.