User Goran - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T07:22:29Zhttp://stackoverflow.com/feeds/user/23164http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1915347/c-associative-array/1915479#19154792Answer by Goran for C# associative arrayGoran2009-12-16T15:43:35Z2009-12-16T15:43:35Z<p>I think <a href="http://www.wintellect.com/PowerCollections.aspx" rel="nofollow">PowerCollections</a> has classes that fit your need (look for OrderedSet or OrderedDictionary.</p>
http://stackoverflow.com/questions/1913068/encryption-in-java-flex/1913326#19133260Answer by Goran for Encryption in Java & FlexGoran2009-12-16T09:11:34Z2009-12-16T09:11:34Z<p>"Simple" encryption mode (simple-aes-cbc) uses random initialization vector which is different each time you use it even if your secret key is the same. </p>
<p>If you wish to guarantee the same results when using the same key you should use "aes-cbc". Additionally you have to manually set the IV on the Cipher:</p>
<pre><code>var ivmode:IVMode = mode as IVMode;
ivmode.IV = "some string guaranteed to be constant"
</code></pre>
<p>The IV can be made dependent on something like userId, which makes encryption repeatable for the same user.</p>
<p>You should consider how this affects your security scheme.</p>
http://stackoverflow.com/questions/1913155/can-should-i-use-weakreference-in-my-complex-object-structure-with-db4o/1913290#19132901Answer by Goran for Can/should I use WeakReference in my complex object structure with db4o?Goran2009-12-16T09:00:57Z2009-12-16T09:00:57Z<p>Hi!</p>
<p>Turning off WeakReferences is mostly used for performance <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Tuning/Performance%5FHints/Turning%5FOff%5FWeak%5FReferences" rel="nofollow">tuning</a>. The downsides to this approach are not negligible - so be careful. I would not recommend it.</p>
<p>Controlling memory usage should be done using <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Object%5FLifecycle/Activation" rel="nofollow">activation</a> features. Activation can help you keep only part of you model in memory and weakreferences will help you GC objects no longer used. I think that's the way to go.</p>
<p>Also - you can post your questions to db4o forums to get help from the db4o community.</p>
<p>Goran</p>
http://stackoverflow.com/questions/1895952/an-application-design-question/1895971#18959711Answer by Goran for An application design question.Goran2009-12-13T09:08:45Z2009-12-13T09:08:45Z<p>Let's simplify:</p>
<ul>
<li>Library1 contains data structs</li>
<li>Library2 contains some controls that use some data structs in Library1</li>
</ul>
<p>There are two options:</p>
<p>a) Extract an interface. </p>
<p>Some controls in Library2 use Library1 directly. You can modify those controls to use an interface and not the Library1 implementation of that interface. Put the interface in Library3. Now you have:</p>
<ul>
<li>Library3 contains interface to data (no references)</li>
<li>Library2 contains some controls that use data that conforms to interface from Library3 (references Library3, does not know about Library1)</li>
<li>Library1 contains data structs that conforms to interface from Library3 (references Library3, does not know about Library2)</li>
<li>Application is the only component that holds references to all 3 libraries and provides controls from Library2 with data structs from Library1.</li>
</ul>
<p>b) Extract common implementation</p>
<p>Some controls in Library2 use Library1 directly. You can extract those data structs from Library1 into Library3. Now you have a situation similar to above.</p>
http://stackoverflow.com/questions/1890679/implementing-an-async-wcf-service/1894747#18947471Answer by Goran for Implementing an async WCF serviceGoran2009-12-12T21:24:38Z2009-12-12T21:24:38Z<p>Implementing async operations on server side is quite simple. Make sure you method names match and are prefixed with Begin and End. GetImageAsyncResult is a custom IAsyncResult implementation (lots of examples on web).</p>
<pre><code> public class MapProvider : IMapProvider //implementation - belongs to server
{
public IAsyncResult BeginGetImage(int level, int x, int y, string[] layers, AsyncCallback callback, object state)
{
GetImageAsyncResult asyncResult = new GetImageAsyncResult(level, x, y, layers, callback, state);
ThreadPool.QueueUserWorkItem(Callback, asyncResult);
return asyncResult;
}
private void Callback(object state)
{
GetImageAsyncResult asyncResult = state as GetImageAsyncResult;
asyncResult.Image = TileProvider.GetImage(asyncResult.Level, asyncResult.X, asyncResult.Y, asyncResult.Layers);
asyncResult.Complete();
}
public System.Drawing.Bitmap EndGetImage(IAsyncResult result)
{
using (GetImageAsyncResult asyncResult = result as GetImageAsyncResult)
{
asyncResult.AsyncWait.WaitOne();
return asyncResult.Image;
}
}
}
public class MapProviderProxy : ClientBase<IMapProvider>, IMapProvider, IDisposable
{
public IAsyncResult BeginGetImage(int level, int x, int y, string[] layers, AsyncCallback callback, object state)
{
return Channel.BeginGetImage(level, x, y, layers, callback, state);
}
public System.Drawing.Bitmap EndGetImage(IAsyncResult result)
{
return Channel.EndGetImage(result);
}
public void Dispose()
{
if (State == CommunicationState.Faulted)
{
Abort();
}
else
{
try
{
Close();
}
catch
{
Abort();
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1894239/choosing-dvcs-criteria0Choosing DVCS - criteriaGoran2009-12-12T18:08:43Z2009-12-12T18:38:52Z
<p>There are similar questions on SO but I'd like some clearer answers here.</p>
<ol>
<li>How important is DVCS not littering your working folder with files? (Alternately is single file repository a big plus to you?)</li>
<li>How important is cherry-picking functionality (choosing arbitrary changes instead of lineage of changes)?</li>
<li>How important is the speed of DVCS?</li>
<li>How important is the size of repository?</li>
<li>How important are GUI, IDE plugins, etc.?</li>
<li>How important is the blame tracking functionality?</li>
<li>Any other features you consider important?</li>
</ol>
http://stackoverflow.com/questions/1576810/pros-and-cons-of-unit-testing-with-t1Pros and Cons of unit testing with t#Goran2009-10-16T08:27:47Z2009-12-12T17:00:03Z
<p>I've recently stumbled upon <a href="http://en.www.prettyobjects.com/tsharp.aspx" rel="nofollow">t#</a>. It seems a nice concept but I'm wondering if it's worth switching from nunit to this? I love the pros but hate the cons so I'm still undecided</p>
<p>Pros:</p>
<ul>
<li>specialized language for unit testing (keywords)</li>
<li>relative assertions</li>
<li>compile time warnings)</li>
<li>focus on test intentions</li>
</ul>
<p>Cons:</p>
<ul>
<li>lack of (integrated) tool support</li>
<li>it's still beta?</li>
<li>not used by many</li>
</ul>
<p>(Don't forget to update the list)</p>
http://stackoverflow.com/questions/1887638/application-structure-using-wcf/1887709#18877091Answer by Goran for Application structure using WCFGoran2009-12-11T12:18:29Z2009-12-11T12:18:29Z<p>The usual structure I use is:</p>
<p>Common - contains interfaces, data-contracts, service contracts, abstract classes etc;
Client - references Common, contains server proxy class;
Server - references Common, contains actual implementation classes;</p>
http://stackoverflow.com/questions/1636165/image-drawn-on-panel-does-not-cover-the-whole-panel-c-winforms0Image drawn on panel does not cover the whole panel (c# - winforms)Goran2009-10-28T09:47:06Z2009-12-08T20:00:02Z
<p>I'm drawing images on panel controls. Changing zoom factor changes the size of panel control (which should stretch the image accordingly). With zoom factors greater then 1 (ie, 2,4,8) a small part of panel begins to show (testing shows that it is the background color of the panel) and grows along with the zoom factor.</p>
<ul>
<li>Panel control borders are set to none. </li>
<li>Panel size is always the power of 2 (ie 64,256...). </li>
<li>Original image size is always the power of 2 (ie 64,256...).</li>
<li>Destination rectangle of the draw method is set to panel width and height.</li>
</ul>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha31What is your (least) favorite syntax gotcha?Goran2008-10-02T15:30:33Z2009-12-06T12:04:05Z
<p>You know the ones that make you go WTH and are easily spotted by a coworker just passing by? </p>
<p>Please keep it one gotcha per answer to simplify voting.</p>
http://stackoverflow.com/questions/1852253/net-object-persistence/1852364#18523642Answer by Goran for .net object persistence Goran2009-12-05T14:39:45Z2009-12-05T14:39:45Z<p>Try db4o at <a href="http://www.db4o.com" rel="nofollow">www.db4o.com</a>. It was recently acquired by Versant.</p>
<p>Some pro's:
It's open source with code available in java and c#.
The framework is dead easy to use.
The community is quite nice and you can get answers quickly on the forums.</p>
http://stackoverflow.com/questions/1825761/wcf-containers-in-datacontract/1825901#18259012Answer by Goran for WCF, containers in DataContractGoran2009-12-01T12:28:26Z2009-12-01T12:28:26Z<p>It's ok but the resulting type will be an array and not a list. I'm partial to using array in the contract just to make sure I don't try to use it as list someplace else.</p>
http://stackoverflow.com/questions/1825598/a-sql-story-in-2-parts-are-sql-views-always-good-and-how-can-i-solve-this-examp/1825691#18256911Answer by Goran for A SQL story in 2 parts - Are SQL views always good and how can I solve this example?Goran2009-12-01T11:51:39Z2009-12-01T11:51:39Z<p>Views are used by query optimizer so they often help in querying for information more efficiently. </p>
<p>Indexed or materialized views however create a table with the required information which can make quite a difference. Think of it as denormalization of you db scheme without changing existing scheme. You get best of both worlds.</p>
<ol>
<li>Some views are never used so they represent needles compexity -which is bad.</li>
<li>Indexed views cannot reference other views (mssql) so there's hardly a point in creating such view.</li>
</ol>
http://stackoverflow.com/questions/1825018/directory-contents-diff0Directory contents diffGoran2009-12-01T09:29:01Z2009-12-01T09:37:46Z
<p>I'm looking for existing ideas / solutions to the problem of finding differences between two directories. Specifically how to identify files that might have been changed, renamed and moved.</p>
<p>A short list of things I've considered:</p>
<ul>
<li>try to pair up files missing in dir A
with new files in dir b by using some
heuristic such as 75% match in
content. This just doesn't seem
robust enough (problem cases include:
significant changes in content,
compression or encryption, possible
multiple matches)</li>
<li>use alternative data streams to add an id to each file. This would work only on NTFS.</li>
<li>add a header/footer to each file containing and id. There's no way to guarantee header/footer will not corrupt the file.</li>
<li>ask for user input for each change to determine if file is indeed deleted or simply moved. This is too hard on user.</li>
<li>require user to rename/move files only by using special commands which will keep track of such changes. This is too hard on user.</li>
<li>setting up a file system watcher to catch changes on the fly. Several issues (watcher must run at all times, is platform specific...)</li>
</ul>
<p>Any ideas welcome...</p>
http://stackoverflow.com/questions/1813286/xslt-select-distinct-but-slightly-different-to-other-examples/1813426#18134260Answer by Goran for XSLT: select distinct but slightly different to other examplesGoran2009-11-28T19:03:22Z2009-11-28T19:03:22Z<p>Hi!</p>
<p>You can use Muenchian method:</p>
<pre><code><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:key name="groupIndex" match="*" use="name()" />
<xsl:template match="/">
<xsl:apply-templates select="a/b"/>
</xsl:template>
<xsl:template match="b">
<xsl:apply-templates select="*[1][generate-id(.) = generate-id(key('groupIndex', name())[1])]" mode="group" />
</xsl:template>
<xsl:template match="*" mode="group">
<xsl:value-of select="name()"/>
</xsl:template>
</xsl:stylesheet>
</code></pre>
http://stackoverflow.com/questions/161942/how-slow-are-net-exceptions31How slow are .NET exceptions?Goran2008-10-02T12:09:10Z2009-11-26T23:03:23Z
<p>I don't want a discussion about when to and not to throw exceptions. I wish to resolve a simple issue. 99% of the time the argument for not throwing exceptions revolves around them being slow while the other side claims (with benchmark test) that the speed is not the issue. I've read numerous blogs, articles, and posts pertaining one side or the other. So which is it?</p>
<p>Some links from the answers: <a href="http://yoda.arachsys.com/csharp/exceptions2.html" rel="nofollow">Skeet</a>, <a href="http://blogs.msdn.com/ricom/archive/2006/09/25/771142.aspx" rel="nofollow">Mariani</a>, <a href="http://blogs.msdn.com/cbrumme/archive/2003/10/01/51524.aspx" rel="nofollow">Brumme</a>.</p>
http://stackoverflow.com/questions/1740706/object-oriented-programming-class-design-confusion/1740768#17407683Answer by Goran for Object oriented programming - class design confusionGoran2009-11-16T08:10:48Z2009-11-16T08:10:48Z<p>Simply mirroring real-world objects is rarely a good idea. To borrow from a classic example - software that controls a coffeemaker is not about coffee beans and hot water - it's about making coffee.</p>
<p>You need to find the underlying abstraction to your real-world problem, not just copy nouns into object hierarchies. </p>
<p>If your apple derives from fruit, does it add any interesting behavior? Is the hierarchy really needed? Inheritance adds a level of complexity to your software and anything increasing complexity is bad. Your software is just a bit harder to follow and understand, there's just a bit more to cover in your test and the likelihood of a bug is just a tiny bit larger.</p>
<p>I find OOP is more about the whitespace - what you are leaving out is more important. </p>
http://stackoverflow.com/questions/1716320/how-to-insert-duplicate-rows-in-sqlite-with-a-unique-id/1716496#17164960Answer by Goran for How to insert duplicate rows in SQLite with a unique ID?Goran2009-11-11T16:44:11Z2009-11-11T16:44:11Z<p>Absolutely no way to do this. Primary Key declaration implies this field is unique. You can't have a non unique PK. There is no way to create a row with existing PK in the same table.</p>
http://stackoverflow.com/questions/1716378/hashtable-how-to-get-string-value-without-tostring/1716481#17164810Answer by Goran for Hashtable how to get string value without toString().Goran2009-11-11T16:42:30Z2009-11-11T16:42:30Z<p>Hi!</p>
<p>You could use System.Collections.Generic.HashSet. Alternately use composition instead of inheritance ie. have hashtable be your private field and write your own indexer that does ToString(). </p>
<pre><code>public class myHashT
{
public myHashT () { }
...
private Hashtable _ht;
public string this[object key]
{
get
{
return _ht[key].ToString();
}
set
{
_ht[key] = value;
}
}
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/1636093/wcf-performance-localhost-vs-domain-address0WCF Performance localhost vs domain addressGoran2009-10-28T09:30:41Z2009-10-28T14:36:58Z
<p>I have a WCF service serving image per request. Accessing the service via localhost is fast but accessing through ip or domain address (as other clients will) is very slow. Images are approximately 1MB in size.</p>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/239788/why-do-i-get-web-exception-when-creating-an-xpathdocument0Why do I get web exception when creating an XPathDocument?Goran2008-10-27T12:57:51Z2009-10-27T21:00:02Z
<p>Creating an XPathDocument with referenced DTD sometimes throws a web exception. Why?</p>
http://stackoverflow.com/questions/980250/the-underlying-connection-was-closed/1620362#16203620Answer by Goran for The underlying connection was closedGoran2009-10-25T08:31:20Z2009-10-25T08:31:20Z<p>This is a generic error that can be caused by just about anything (In my case some tiff images were causing gdi+ error in a wcf service).</p>
<p>Start by checking:</p>
<ol>
<li>IIS log files </li>
<li>Application log files (ie. enable service logging if you use services) </li>
<li>Permissions and security</li>
</ol>
http://stackoverflow.com/questions/1052858/actionscript-3-asynctoken-implementation1ActionScript 3 AsyncToken implementationGoran2009-06-27T13:48:17Z2009-10-21T17:41:10Z
<p>Looking for an example or documentation links as to how to implement a method returning AsyncToken.</p>
<p>Note this is not about using/consuming a method returning AsyncToken! I wish to write such methods myself.</p>
http://stackoverflow.com/questions/911166/db4o-to-preserve-identity-of-objects/1559558#15595580Answer by Goran for db4o to preserve identity of objects.Goran2009-10-13T11:07:33Z2009-10-13T11:07:33Z<p>Hi!</p>
<p>Db4o does use <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Implementation%5FStrategies/IDs%5Fand%5FUUIDs" rel="nofollow">IDs and UUIDs</a> internally and you can access those if needed. Also worth reading is <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Basic%5FConcepts/Object%5FIdentity/Unique%5FIdentity%5FConcept" rel="nofollow">this</a>.</p>
http://stackoverflow.com/questions/1329860/db4o-with-silverlight-ria-services/1559546#15595460Answer by Goran for DB4O with Silverlight RIA ServicesGoran2009-10-13T11:05:49Z2009-10-13T11:05:49Z<p>Hi!</p>
<p>Db4o does use <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Implementation%5FStrategies/IDs%5Fand%5FUUIDs" rel="nofollow">IDs and UUIDs</a> internally and it is possible to use those. Also worth reading is <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Basic%5FConcepts/Object%5FIdentity/Unique%5FIdentity%5FConcept" rel="nofollow">this</a>.</p>
http://stackoverflow.com/questions/928597/trouble-with-db4o-objects-arent-returned-after-an-iis-reset-container-is-out-o/1559526#15595260Answer by Goran for Trouble with db4o...objects aren't returned after an IIS reset/container is out of scope.Goran2009-10-13T10:59:33Z2009-10-13T10:59:33Z<p>Hi!</p>
<p>I think you are missing the commit statement in your Save method.</p>
<p>Goran</p>
http://stackoverflow.com/questions/1363590/improve-db4o-linq-query/1559483#15594830Answer by Goran for Improve db4o linq queryGoran2009-10-13T10:50:59Z2009-10-13T10:50:59Z<p>Hi!</p>
<p>Please check if your NQ is indeed optimized (<a href="http://developer.db4o.com/Resources/view.aspx/Reference/Tuning/Diagnostics/NativeQueryNotOptimized" rel="nofollow">see here</a>). If not then your best bet is to translate this into SODA query yourself.</p>
<p>Goran</p>
http://stackoverflow.com/questions/1475975/analytical-approach-to-optimizing-spatial-indices-in-mssql20080Analytical approach to optimizing spatial indices in MsSql2008Goran2009-09-25T07:53:35Z2009-09-25T08:40:51Z
<p>What would be the best approach to optimizing spatial index on geometry data? Specifically:</p>
<ol>
<li>How to choose values for grid hierarchy? </li>
<li>How to choose value for Max cells per object rule?</li>
</ol>
<p>These are very much data related so I'm looking for a sensible approach to analyzing the data and then testing out the values.</p>
http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/545857#54585724Answer by Goran for Biggest performance improvement you've had with the smallest change?Goran2009-02-13T13:11:33Z2009-09-02T22:16:24Z<p>Truncate table BigTable.</p>
<p>Queries returned no records but it was faaaaaast!</p>
http://stackoverflow.com/questions/1024285/cloning-webservice0Cloning WebServiceGoran2009-06-21T16:41:26Z2009-06-22T11:37:25Z
<p>Is there a way to clone WebService object in as3? The ObjectUtil method seems to throw an error.</p>
<p>If not is there a way to cache wsdl and assign it to new WebService object so that constant loading of wsdl can be omitted?</p>
http://stackoverflow.com/questions/1913068/encryption-in-java-flex/1913326#1913326Comment by Goran on Encryption in Java & FlexGoran2009-12-16T09:58:04Z2009-12-16T09:58:04ZI've dealt with this problem as stated above. You can checkout the hurlan library source at <a href="http://crypto.hurlant.com/demo/srcview/index.html" rel="nofollow">crypto.hurlant.com/demo/srcview/index.html</a>. They've implemented the same method.http://stackoverflow.com/questions/1913376/is-there-difference-in-speed-between-dictionary-containskey-value-and-a-foreach-l/1913395#1913395Comment by Goran on is there difference in speed between Dictionary.ContainsKey/Value and a foreach loop that checks for a certain key/valueGoran2009-12-16T09:42:32Z2009-12-16T09:42:32ZSo it is! I thought it was implemented as a binary search in the background...http://stackoverflow.com/questions/1890679/implementing-an-async-wcf-service/1894747#1894747Comment by Goran on Implementing an async WCF serviceGoran2009-12-14T11:50:45Z2009-12-14T11:50:45ZCorrect - I found a base AsyncResult class on the web. GetImageAsyncResult derives from that. http://stackoverflow.com/questions/1894239/choosing-dvcs-criteriaComment by Goran on Choosing DVCS - criteriaGoran2009-12-12T18:35:55Z2009-12-12T18:35:55ZI'd like to hear from users with more experience then me.http://stackoverflow.com/questions/1887638/application-structure-using-wcf/1887709#1887709Comment by Goran on Application structure using WCFGoran2009-12-11T21:57:36Z2009-12-11T21:57:36ZYou can implement async services. Just create beginX and endX methods (in interface, implementation and proxy). http://stackoverflow.com/questions/1887638/application-structure-using-wcf/1888168#1888168Comment by Goran on Application structure using WCFGoran2009-12-11T17:27:19Z2009-12-11T17:27:19ZRegarding testing - you can add reference to Service implementation and use implementation class instead of proxies. Once everything works remove reference to Service implementation and go back to using proxies.http://stackoverflow.com/questions/1887638/application-structure-using-wcf/1887709#1887709Comment by Goran on Application structure using WCFGoran2009-12-11T17:25:08Z2009-12-11T17:25:08ZI derive the proxy class from ClientBase<T> and implement interface to forward calls to Channel.http://stackoverflow.com/questions/1825018/directory-contents-diff/1825063#1825063Comment by Goran on Directory contents diffGoran2009-12-11T10:41:45Z2009-12-11T10:41:45ZGot me going in the right direction, thanks :)http://stackoverflow.com/questions/1603876/working-with-xslt-in-visual-studio/1869891#1869891Comment by Goran on Working with XSLT in Visual Studio Goran2009-12-11T10:37:56Z2009-12-11T10:37:56ZI like the separate project solution. It plays along with VSs limitation and keeps things neat.http://stackoverflow.com/questions/1880562/how-to-get-node-types-in-a-tree-using-cComment by Goran on How to get Node Types in a tree using C#Goran2009-12-10T12:16:25Z2009-12-10T12:16:25ZType? The object type is TreeNode. Can you elaborate on your request?http://stackoverflow.com/questions/1838807/winforms-treeview-how-to-manually-highlight-node-like-it-was-clicked/1838897#1838897Comment by Goran on WinForms TreeView - how to manually "highlight" node (like it was clicked)Goran2009-12-09T20:09:53Z2009-12-09T20:09:53ZAlso the property HideSelection can be used. If set to false the highlight will be shown regardless of focus.http://stackoverflow.com/questions/1852253/net-object-persistence/1852364#1852364Comment by Goran on .net object persistence Goran2009-12-09T13:07:13Z2009-12-09T13:07:13ZI'd say db4o is more mature but then again MS knows how to play catch-up. Db4o to me is easier to use as there's no need to build a persistence model and it knows how to deal with missing assemblies. I haven't seen any performance benchmarks that include both so hard to say which is faster. As a db4o MVP i favor db4o :)http://stackoverflow.com/questions/1854640/goto-why-does-it-still-exist/1854759#1854759Comment by Goran on Goto: Why does it still exist?Goran2009-12-06T09:03:18Z2009-12-06T09:03:18ZAhm... c# has goto?http://stackoverflow.com/questions/1705008/simple-proof-that-guid-is-not-unique/1854801#1854801Comment by Goran on simple proof that GUID is not uniqueGoran2009-12-06T08:58:11Z2009-12-06T08:58:11ZThats actually doable when using virtualization. You can and you do get duplicate guids.http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1845144#1845144Comment by Goran on Can someone copyright a SQL query?Goran2009-12-04T19:34:31Z2009-12-04T19:34:31ZCopyright deals with a lot more then copying...