User Joe Pineda - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T01:46:33Z http://stackoverflow.com/feeds/user/21258 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1662902/when-to-use-except-as-opposed-to-not-exists-in-transact-sql 4 When to use EXCEPT as opposed to NOT EXISTS in Transact SQL? Joe Pineda 2009-11-02T18:39:36Z 2009-11-03T18:27:12Z <p>Hi, I just recently learned of the existence of the new "EXCEPT" clause in SQL Server (a bit late, I know...) thru reading code written by a coworker. It truly amazed me!</p> <p>But then I have some questions regarding its usage: when is it recommended to be employed? Is there a difference, performance-wise, between using it versus a correlated query employing "AND NOT EXISTS..."?</p> <p>After reading EXCEPT's article in the BOL I thought it was just a shorthand for the second option, but was surprised when I rewrote a couple queries using it (so they had the "AND NOT EXISTS" syntax much more familiar to me) and then checked the execution plans - surprise! The EXCEPT version had a shorter execution plan, and executed faster, also. Is this always so?</p> <p>So I'd like to know: what are the guidelines for using this powerful tool?</p> http://stackoverflow.com/questions/628526/is-short-circuiting-boolean-operators-mandated-in-c-c-and-evaluation-order 10 Is short-circuiting boolean operators mandated in C/C++? And evaluation order? Joe Pineda 2009-03-10T00:23:39Z 2009-03-10T02:17:49Z <p>Does the ANSI standard <em>mandate</em> logic operators to be short-circuited, in either C or C++?</p> <p>I'm confused for I recall the K&amp;R book saying your code shouldn't depend on these operations being short circuited, for they may not. Could someone please point out where in the standard it's said logic ops are always short-circuited? I'm mostly interested on C++, an answer also for C would be great.</p> <p>I also remember reading (can't remember where) that evaluation order isn't strictly defined, so your code shouldn't depend or assume functions within an expression would be executed in a specific order: by the end of a statement all referenced functions will have been called, but the compiler has freedom in selecting the most efficient order.</p> <p>Does the standard indicate the evaluation order of this expression?</p> <pre><code>if( functionA() &amp;&amp; functionB() &amp;&amp; functionC() ) cout&lt;&lt;"Hello world"; </code></pre> <p>Thanks in advance!</p> http://stackoverflow.com/questions/625169/is-it-ok-to-write-new-apps-for-net-yet/626119#626119 1 Answer by Joe Pineda for Is it OK to write new apps for .NET yet ? Joe Pineda 2009-03-09T12:59:55Z 2009-03-09T12:59:55Z <p>For what I've read Mono (the libre software's implementation of .NET) ships with a linker - you could compile your application using Mono, linking to it all needed components.</p> <p>The good part is you'd get a stand-alone package: no need for end user to install a specific .NET framework if they haven't already. The downside is: depending on how many .NET libraries you're using, your executable may end up being <strong>huge</strong>, negating the benefits.</p> http://stackoverflow.com/questions/615355/is-there-any-reason-to-check-for-a-null-pointer-before-deleting/616535#616535 0 Answer by Joe Pineda for Is there any reason to check for a NULL pointer before deleting ? Joe Pineda 2009-03-05T20:46:17Z 2009-03-05T20:46:17Z <p>I believe the previous developer coded it "redundantly" to save some milliseconds: It's a good thing to have the pointer be set to NULL upon being deleted, so you could use a line like the following right after deleting the object:</p> <pre><code>if(pSomeObject1!=NULL) pSomeObject1=NULL; </code></pre> <p>But then delete is doing that exact comparison anyway (doing nothing if it's NULL). Why do this twice? You can always assign pSomeObject to NULL after calling delete, regardless of its current value - but this would be slightly redundant if it had that value already.</p> <p>So my bet is the author of those lines tried to ensure pSomeObject1 would always be NULL after being deleted, without incurring the cost of a potentially unnecessary test and assignation.</p> http://stackoverflow.com/questions/597277/ways-to-enforce-prepared-statements/597564#597564 0 Answer by Joe Pineda for Ways to enforce prepared statements Joe Pineda 2009-02-28T05:40:47Z 2009-02-28T05:40:47Z <p>Don't have your application send code directly to the database server, but rather send it thru a middle-tier. It can easily parse whatever's to be sent to the DB and enforce some constraints upon it. For instance, forcing all SQL code to be composed of <strong>one</strong> and no more than one statement, and either reject it or only execute first statement if there's more than one.</p> <p>Basic SQL injection attacks involve code like this:</p> <pre><code>DECLARE @SQL VARCHAR(4000), @Table VARCHAR(50) SET @Table='Employees' -- Imagine this actually comes as a parameter from app SET @SQL='SELECT * FROM '+@Table EXEC(@SQL) </code></pre> <p>An attacker could pass string "systables';UPDATE BankAccount SET Money=Money+10000 WHERE AccountCode=12345;DROP TABLE AuditTrails;" to the DB - it'd have disastrous effects.</p> <p>By having a middle tier doing this minimum parsing on the strings, you are protected against this, the simplest of SQL injection attacks. For others, you can add them to your middle tier (and it can also handle result caching, bandwith throttling, etc.)</p> <p>If you <em>need</em> to pass more than one SQL statement from your app, I'd say your doing things wrong and should encapsulate that logic in a stored procedure, or minimum at the middle tier itself.</p> http://stackoverflow.com/questions/597513/sql-server-table-variables-with-an-alias-in-a-delete-from-statement/597531#597531 1 Answer by Joe Pineda for SQL Server: Table Variables with an Alias in a Delete From Statement Joe Pineda 2009-02-28T05:09:18Z 2009-02-28T05:09:18Z <p>Try this, it ought to work (the first FROM is optional):</p> <pre><code>DELETE [FROM] @O FROM @O o1 where ACount = 0 and exists (select Month from @O o2 where o1.Month = o2.Month and o2.ACount &gt; 0) </code></pre> <p>The rationale is: DELETE, as explained <a href="http://msdn.microsoft.com/en-us/library/aa258847%28SQL.80%29.aspx" rel="nofollow" title="MSDN article on the DELETE statement">here</a>, expects a non-aliased table first, an optional FROM can precede it. After that you do can put an alias on a table in the second FROM, if you need to do a JOIN, subquery, etc.</p> http://stackoverflow.com/questions/495544/recursive-sql-for-a-menu-system/498390#498390 1 Answer by Joe Pineda for Recursive SQL for a menu system. Joe Pineda 2009-01-31T06:12:52Z 2009-01-31T06:12:52Z <p>As others have pointed out, there's no way in standard ANSI SQL to do what you want. For something like this, I once implemented on SQL 2000 a system for tracking components of products an ex employer made - each "product" could be atomic component like, say, screw A500. This component could be used in "composite" components: some A500 screws plus 6 B120 wood boards conformed a C90 "stylish tool box". That box, plus more screws and a motor "M500" could conform a carpetry tool.</p> <p>I designed a table "Product" like this:</p> <pre><code>ID, PartName, Description 1, A500, "Screw A500" 2, B120, "Wood panel B120" 3, C90, "Stylish tool box C90" 4, M500, "Wood cutter M500" </code></pre> <p>And a "ProductComponent" table as follows:</p> <pre><code>Hierarchy, ComponentID, Amount 0301, 1, 24 0302, 2, 6 0401, 1, 3 0402, 3, 1 0403, 4, 1 040201, 1, 24 040202, 2, 6 </code></pre> <p>The trick is: field hierarchy is a VARCHAR with first 2 chars representing each product's ID, each next pair of chars identify a node in the tree. So we see that product 3 depends on 2 other products. Product 4 depends on 2 others, also, one of which depends on its part on two others.</p> <p>There's lots of redundancy in this model, but allows to easily calculate how many screws you need for a particular product, determine fastly which parts need wood panels or get the list of all components a product ultimately depends on (including indirect dependencies), etc. And scanning the tree below a certain level is a simple LIKE query!</p> <p>By using 2 chars in a hexadecimal representation I limited a product to depend directly on maximum 256 other prods (which on turn can depend on something else). You could change that to use base 36 (the 26 letters plus 10 numbers) or base-64 if you need more than that.</p> <p>Besides, this table model works very well on Access and mySQL, too. What you can not have is circular dependencies in any way.</p> http://stackoverflow.com/questions/477064/is-it-possible-to-execute-a-stored-procedure-over-a-set-without-using-a-cursor/478309#478309 2 Answer by Joe Pineda for Is it possible to execute a stored procedure over a set without using a cursor? Joe Pineda 2009-01-25T21:16:47Z 2009-01-25T21:16:47Z <p>If you're only using SQL Server 2005 or newer, don't care about backwards compatibility and can convert your code to be in a User-Defined Function (rather than a stored proc) then you can use the new "CROSS APPLY" operator, which does use a syntax very similar to what you want. I found <a href="http://www.sqlteam.com/article/using-cross-apply-in-sql-server-2005" rel="nofollow">here</a> a short intro (of course, you can also read the BOLs and MSDN)</p> <p>Supposing your SP returns a single value named *out_int*, your example could be rewritten as:</p> <pre><code>SELECT T.id, UDF.out_int FROM Table1 T CROSS APPLY dbo.fn_My_UDF(T.id) AS UDF </code></pre> <p>This will retrieve each "id" from Table1 and use it to call fn_My_UDF, the result of which will appear in the final result-set besides the original parameter.</p> <p>A variat of "CROSS APPLY" is "OUTER APPLY". They are equivalents of "INNER JOIN" and "LEFT JOIN", but work on joining a table and a UDF (and calling the second at the same time).</p> <p>If you <strong>must</strong> (by explicit order of the pointy-haired boss) use SPs insead, well - bad luck! You'll have to keep with cursors, or try cheating a bit: change the code into UDFs, and create wrapper SPs :D.</p> http://stackoverflow.com/questions/327199/what-will-we-do-after-access/347337#347337 15 Answer by Joe Pineda for What will we do after Access? Joe Pineda 2008-12-07T07:01:27Z 2008-12-07T07:01:27Z <p>Access is not a DBMS. Or at least it's not <em>just</em> a simple DBMS. It's a very good RAD environment, a simple way to create SQL code graphically, and a regular front-end to fully fledged DBMs.</p> <p>Neither SQL Server (Express or MSDE) nor Oracle, MySQL, etc. will <strong>ever</strong> replace it, until they come integrated with a simple programming language, a Crystal Reports like facility and a way for beginners to get around without having to learn SQL.</p> <p>At my first professional job I developed a very big system completely in Access. Front end for the clients, admin front for me, reports and monitoring for management, permissions per user, automatic tasks run at certain times, etc. I came to learn a lot of its flaws and strengths as a result.</p> <p>I've seen marvelous apps done with it, as well as pieces of crap. I still use it for personal projects, and ain't' ashamed of it (for instance, a Sudoku player, or a Karnaugh mapping implementation). There's an MVP who's created a Paint clone completely in Access, though I believe that's extreme.</p> <p>Access' pearls: It's nice to easily test a database design idea and have sketch forms, reports, etc. created for you. If you change a column's name (or even a table, though that fails sometimes) it's nice to see all references to that have changed to the new name, automatically. The "sub-form" control rocks, I longed for it on VB6. And the "Thunder" button to do repeated filtering on tables is great, I wish I had something like that on SSMS!</p> http://stackoverflow.com/questions/338535/is-sql-server-windows-integrated-security-good-for-anything/341291#341291 2 Answer by Joe Pineda for Is SQL Server/Windows integrated security good for anything? Joe Pineda 2008-12-04T16:50:27Z 2008-12-04T23:39:19Z <p>I guess it basically down to "not reinventing the wheel" and taking advantage of the "many eyes" effect.</p> <p>Using Windows authentication you leverage the power of Windows integrated security, on top of which you can add your own stuff if so you wish. It's an already matured system which has been tested millions of times, sparing you the effort (and on your clients, the cost) of making your own mistakes and discovering/solving them later.</p> <p>And then plenty of people are constantly scanning the Windows authentication process, checking it for vulnerabilities, exploring ways to bypass it, etc. When a vulnerability is openly disclosed and a fix for it gets created, your application just got a "free" security enhancement.</p> <p>In my current work we have AD groups as SQL logins, so we assign SQL permissions based on membership to AD groups. So all members of the sys engineering group have some permissions, the DBAs have other, normal users others, supervisors others, etc. Adding new users or changing their permissions is a simple thing to do, only done once at AD and they immediately get the permissions they should get at the database.</p> <p><strong>Post Edit</strong>:</p> <p>Expanding a bit on the "reinventing the wheel": To an AD account I can deny the right to login to a specific machine - or lock it out of everymachine save one or two. I can stop them from loging in at more than 2 workstations at the same time. I can force them to change passwords after some time, plus enforcing some minimal strenght in them. And some other tricks, all of which improve security in my system.</p> <p>With SQL S. users, you've got none of this. I've seen people trying to enforce them with either complicated SQL jobs or a sort of home-brewn daemon, which in my opinion is reinventing a wheel already invented.</p> <p>And then you can't stop user SA (or a privileged user) loging in from any machine. I was told once of a clever way to stop a brute-force attack over a SQL S. which had its port for remote login open over the Internet - administrators of the site implemented a job that changed SA's password every half an hour. Had it been SQL + Windows, they could've simply said they wanted administrator to login only from certain boxen, or outright use only the Windows authentication, thereby forcing anyone to go thru the VPN first.</p> http://stackoverflow.com/questions/337522/how-do-you-delete-n-files-of-x-type-from-y-subfolders-from-a-windows-batch-file/341244#341244 0 Answer by Joe Pineda for How do you delete N files of X type from Y subfolders from a Windows batch file? Joe Pineda 2008-12-04T16:40:02Z 2008-12-04T16:40:02Z <p>If the del command didn't have the /S flag to delete recursively, I'd use AWK to do something like this (you'd need the UNIX tools for Windows):</p> <pre><code>dir MyProject\*.* /ad /s /b | gawk "{print \"del \\\"\" $0 \"\\*.type\\\"\";}" | cmd </code></pre> <p>My 2 cents, in case you ever need to do something similar (applying a program to all files of X type in all subfolders) with a command that lacks a recursive flag.</p> http://stackoverflow.com/questions/327658/slow-msaccess-disk-writing/327981#327981 2 Answer by Joe Pineda for Slow MSAccess disk writing Joe Pineda 2008-11-29T20:38:26Z 2008-11-29T20:38:26Z <p>A trick that can work on any DBMS to substantially speed up an insertion is to disable temporarily the indexes, foreign keys and constraints prior to bulk inserting the data - then enable them again after your data in the database.</p> <p>Especially indexes can be performance-killers for sequential insertion, it's faster by at least an order (sometimes 2!) of magnitude to fill a table first and then create the index on the already filled data than to insert with the index in place. In this case you might need to drop the index, then recreate it.</p> <p>Then, as most other posters have already said, it's really a waste of time to insert stuff a row at a time if you can do it in bunches. You'll get a minor speed improvement if you open the table with no locking at all or only optimistic locking.</p> <p>And then you might get another tiny increment by using DAO recordsets instead of ADO - I noticed this back in the days when I developed in VB6, probably this is not the case anymore with ADO.NET</p> http://stackoverflow.com/questions/312732/whats-a-good-way-for-figuring-out-all-possible-words-of-a-given-length/312817#312817 1 Answer by Joe Pineda for What's a good way for figuring out all possible words of a given length. Joe Pineda 2008-11-23T18:56:29Z 2008-11-25T20:27:56Z <p>Inspired by Garry Shutler's answer, I decided to recode his answer in T-SQL.</p> <p>Say "Letters" is a table with only one field, MyChar, a CHAR(1). It has 26 rows, each an alphabet's letter. So we'd have (you can copy-paste this code on SQL Server and run as-is to see it in action):</p> <pre><code>DECLARE @Letters TABLE ( MyChar CHAR(1) PRIMARY KEY ) DECLARE @N INT SET @N=0 WHILE @N&lt;26 BEGIN INSERT @Letters (MyChar) VALUES ( CHAR( @N + 65) ) SET @N = @N + 1 END -- SELECT * FROM @Letters ORDER BY 1 SELECT A.MyChar, B.MyChar, C.MyChar, D.MyChar FROM @Letters A, Letters B, Letters C, Letters D ORDER BY 1,2,3,4 </code></pre> <p>The advantages are: It's easily extensible into using capital/lowercase, or using non-English Latin characters (think "Ñ" or cedille, eszets and the like) and you'd still be getting an ordered set, only need to add a collation. Plus SQL Server will execute this slightly faster than LINQ on a single core machine, on multicore (or multiprocessors) the execution can be in parallel, getting even more boost.</p> <p>Unfortunately, it's stuck for the 4 letters specific case. lassevk's recursive solution is more general, trying to do a general solution in T-SQL would necessarily imply dynamic SQL with all its dangers.</p> http://stackoverflow.com/questions/281704/has-anyone-tried-their-software-with-reactos-yet/281815#281815 4 Answer by Joe Pineda for Has anyone tried their software with ReactOS yet? Joe Pineda 2008-11-11T18:51:30Z 2008-11-23T19:00:24Z <p>In their homepage, at the <a href="http://www.reactos.org/en/tour.html" rel="nofollow">Tour</a> you can see a partial list of office, tools and games that already run OK (or more or less) at ReactOS. If you subscribe to the newsletter, you'll receive info about much more - for instance, I was quite surprised when I read most SQL Server 2000 tools actually work on ReactOS!! Query Analyzer, OSQL and Books Online work fine, Enterprise Manager and Profiler are buggy and the DBMS won't work at all.</p> <p>At a former workplace (an all MS shop) we investigated seriously into it as a way to reduce our expenditure in licenses whilst keeping our in-house developed apps. Since it couldn't run MSDE fine, we had to abandon the project - hope in the future this will be solved and my ex-coworkers can push it again.</p> <p>These announcements might as well be also on their homepage - I couldn't find them after 5 mins. of searching, though. Probably the easiest way to know all these compatibility issues is to join the newsletter, or look for its archives.</p> <p>I have been tracking this OS' progress for quite some time. I believe it has all the potential to really bring an OSS operating system to the masses for it breaks the "chicken and egg" problem: it has applications and drivers from the very beginning (since it aims to have full ABI compatibility with MS Windows).</p> <p>Just wait for their first beta, I won't be surprised if they surpass Linux in popularity really soon after that...</p> <p><strong>Post Edit</strong>: Found it! Look at section <a href="http://www.reactos.org/support/" rel="nofollow">Support Database</a>, it's the web place to go look for whether a particular piece of hardware of some program works on ReactOS.</p> http://stackoverflow.com/questions/284519/can-i-allocate-a-specific-number-of-bits-in-c/284674#284674 0 Answer by Joe Pineda for Can I allocate a specific number of bits in C? Joe Pineda 2008-11-12T17:22:46Z 2008-11-12T17:22:46Z <p>If you don't mind having to write wrappers, you could also use either bit_set or bit_vector from C++'s STL, seems like they (especially the latter) have exactly what you need, already coded, tested and packaged (and plenty of bells and whistles).</p> <p>It's a real shame we lack a straight forward way to use C++ code in C applications (no, creating a wrapper isn't straight-forward to me, nor fun, and means more work in the long term).</p> http://stackoverflow.com/questions/281264/remove-empty-elements-from-an-array-in-javascript/281638#281638 1 Answer by Joe Pineda for Remove empty elements from an array in Javascript Joe Pineda 2008-11-11T17:50:39Z 2008-11-11T17:50:39Z <p>This works, I tested it in <a href="http://appjet.com/" rel="nofollow">AppJet</a> (you can copy-paste the code on its IDE and press "reload" to see it work, don't need to create an account)</p> <pre><code>/* appjet:version 0.1 */ function Joes_remove(someArray) { var newArray = []; var element; for( element in someArray){ if(someArray[element]!=undefined ) { newArray.push(someArray[element]); } } return newArray; } var myArray2 = [1,2,,3,,3,,,0,,,4,,4,,5,,6,,,,]; print("Original array:", myArray2); print("Clenased array:", Joes_remove(myArray2) ); /* Returns: [1,2,3,3,0,4,4,5,6] */ </code></pre> http://stackoverflow.com/questions/278476/is-inheritance-really-needed 13 Is Inheritance really needed? Joe Pineda 2008-11-10T16:59:44Z 2008-11-10T22:38:51Z <p>I must confess I'm somewhat of an OOP skeptic. Bad pedagogical and laboral experiences with object orientation didn't help. So I converted into a fervent believer in Visual Basic (the classic one!).</p> <p>Then one day I found out C++ had changed and now had the STL and templates. I really liked that! Made the language useful. Then another day MS decided to apply facial surgery to VB, and I really hated the end result for the gratuitous changes (using "end while" instead of "wend" will make me into a better developer? Why not drop "next" for "end for", too? Why force the getter alongside the setter? Etc.) plus so much Java features which I found useless (inheritance, for instance, and the concept of a hierarchical framework).</p> <p>And now, several years afterwards, I find myself asking this philosophical question: Is inheritance <strong>really</strong> needed?</p> <p>The gang-of-four say we should favor object composition over inheritance. And after thinking of it, I cannot find something you can do with inheritance you cannot do with object aggregation plus interfaces. So I'm wondering, why do we even have it in the first place?</p> <p>Any ideas? I'd love to see an example of where inheritance would be definitely needed, or where using inheritance instead of composition+interfaces can lead to a simpler and easier to modify design. In former jobs I've found if you need to change the base class, you need to modify also almost all the derived classes for they depended on the behaviour of parent. And if you make the base class' methods virtual... then not much code sharing takes place :(</p> <p>Else, when I finally create my own programming language (a long unfulfilled desire I've found most developers share), I'd see no point in adding inheritance to it...</p> http://stackoverflow.com/questions/278476/is-inheritance-really-needed/279380#279380 1 Answer by Joe Pineda for Is Inheritance really needed? Joe Pineda 2008-11-10T22:19:31Z 2008-11-10T22:19:31Z <p>Thanks to all for your answers. I maintain my position that, strictly speaking, inheritance isn't needed, though I believe I found a new appreciation for this feature.</p> <p>Something else: In my job experience, I have found inheritance leads to simpler, clearer designs when it's brought in late in the project, after it's noticed a lot of the classes have much commonality and you create a base class. In projects where a grand-schema was created from the very beginning, with a lot of classes in an inheritance hierarchy, refactoring is usually painful and dificult.</p> <p>Seeing some answers mentioning something similar makes me wonder if this might not be exactly how inheritance's supposed to be used: ex post facto. Reminds me of Stepanov's quote: "you don't start with axioms, you end up with axioms after you have a bunch of related proofs". He's a mathematician, so he ought to know something.</p> http://stackoverflow.com/questions/277900/how-can-i-run-sql-server-stored-procedures-in-parallel/278538#278538 1 Answer by Joe Pineda for How can I run sql server stored procedures in parallel? Joe Pineda 2008-11-10T17:20:05Z 2008-11-10T17:20:05Z <p>Do you absolutely need both SPs to be executed in parallel?</p> <p>With simple CRUD statements within a single SP, I've found SQL S. does a very good job of determining which of them can be run in parallel and do so. I've never seen SQL S. run 2 SPs in parallel if both are called sequentially from a T-SQL statement, don't even know if it's even possible.</p> <p>Now then, do the DTS really execute them in parallel? It could be it simply executes them sequentially, then calls the 3rd SP after the last finishes successfully.</p> <p>If it really runs them in parallel, probably you should stick with DTS, but then I'd like to know what it does if I have a DTS package call, say, 10 heavy duty SPs in parallel... I may have to do some testings to learn that myself :D</p> http://stackoverflow.com/questions/277944/best-way-to-read-structured-binary-files-with-java/278254#278254 3 Answer by Joe Pineda for Best way to read structured binary files with Java Joe Pineda 2008-11-10T15:58:16Z 2008-11-10T16:12:59Z <p>I may have misunderstood you, but it seems to me you're creating in-memory structures you hope will be a byte-per-byte accurate representation of what you want to read from hard-disk, then copy the whole stuff onto memory and manipulate thence?</p> <p>If that's indeed the case, you're playing a very dangerous game. At least in C, the standard doesn't enforce things like padding or aligning of members of a struct. Not to mention things like big/small endianness or parity bits... So even if your code happens to run it's very non-portable and risky - you depend on the compiler's creator not changing its mind on future versions.</p> <p>Better to create an automaton to both validate the structure being read (byte per byte) from HD is valid, and filling an in-memory structure if it's indeed OK. You may loose some milliseconds (not so much as it may seem for modern OSes do a lot of disk read caching) though you gain platform and compiler independence. Plus, your code will be easily ported to another language.</p> <p>Post Edit: In a way I sympathize with you. In the good-ol' days of DOS/Win3.11, I once created a C program to read BMP files. And used exactly the same technique. Everything was nice until I tried to compile it for Windows - oops!! Int was now 32 bits long, rather than 16! When I tried to compile on Linux, discovered gcc had very different rules for bit fields allocation than Microsoft C (6.0!). I had to resort to macro tricks to make it portable...</p> http://stackoverflow.com/questions/251885/a-struct-doesnt-belong-in-an-object-oriented-program/252187#252187 9 Answer by Joe Pineda for a struct doesn't belong in an object oriented program ... Joe Pineda 2008-10-30T23:58:36Z 2008-10-30T23:58:36Z <p>Don't be a hiding zealot. If your get/set methods do nothing but simply copy verbatim the value onto/from a hidden, private field, you've gained nothing over a public member and only complicate unnecessarily your class (and, depending on the intelligence of the compiler, slow its usage a bit).</p> <p>There's a case for not allowing direct access when your setter methods do some validation, copy the data somewhere else, process it a bit before storing it, etc. Same in the case of getters that actually <em>calculate</em> the value they return from multiple internal sources, and hide the way it's derived (I believe Bertrand Meyer speaks a bit about this in his book)</p> <p>Or if allowing the users of your class to directly change such a value would have unintended side effects or breaks an assumption some of your member classes have about the values. On those situations, by all means, do hide your values.</p> <p>For instance, for a simple "Point" class, that only holds a couple coordinates and colour, and methods to "Plot" it and "Hide" it on screen, I would see no point in not allowing the user to directly set the values for its fields.</p> http://stackoverflow.com/questions/243782/need-a-row-count-after-select-statement-whats-the-optimal-sql-approach/244043#244043 3 Answer by Joe Pineda for Need a row count after SELECT statement: what's the optimal SQL approach? Joe Pineda 2008-10-28T16:57:02Z 2008-10-28T16:57:02Z <p>If you're concerned the number of rows that meet the condition may change in the few milliseconds since execution of the query and retrieval of results, you could/should execute the queries inside a transaction:</p> <pre><code>BEGIN TRAN bogus SELECT COUNT( my_table.my_col ) AS row_count FROM my_table WHERE my_table.foo = 'bar' SELECT my_table.my_col FROM my_table WHERE my_table.foo = 'bar' ROLLBACK TRAN bogus </code></pre> <p>This would return the correct values, always.</p> <p>Furthermore, if you're using SQL Server, you can use @@ROWCOUNT to get the number of rows affected by last statement, and redirect the output of <em>real</em> query to a temp table or table variable, so you can return everything altogether, and no need of a transaction:</p> <pre><code>DECLARE @dummy INT SELECT my_table.my_col INTO #temp_table FROM my_table WHERE my_table.foo = 'bar' SET @dummy=@@ROWCOUNT SELECT @dummy, * FROM #temp_table </code></pre> http://stackoverflow.com/questions/229569/why-do-companies-use-source-safe/230232#230232 2 Answer by Joe Pineda for Why do companies use Source Safe? Joe Pineda 2008-10-23T15:38:50Z 2008-10-23T15:38:50Z <p>Actually, most people use VSS because either they themselves, their bosses, management, or their companies' CEOs committed a great, heinous crime in some past life - so they're cleansing their bad karma via auto-flagellation in the worst possible way.</p> http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf/170627#170627 1 Answer by Joe Pineda for "Must Have" Books on Your Bookshelf Joe Pineda 2008-10-04T16:40:22Z 2008-10-22T23:34:25Z <p>What? No one has mentioned Joel Spolsky's crown jewel? I'll do then: "Joel on Software: And on Diverse and Occasionally Related Matters That Will Prove of Interest to Software Developers, Designers, and Managers, and to Those Who, Whether by Good Fortune or Ill Luck, Work with Them in Some Capacity"</p> <p>Each time I read it I find something to learn!</p> http://stackoverflow.com/questions/223618/perl-ado-thinks-printed-output-in-stored-procedure-is-an-error 2 Perl ADO thinks printed output in stored procedure is an error! Joe Pineda 2008-10-21T21:44:55Z 2008-10-22T22:13:38Z <p>First of all (in case this is important) I'm using ActiveState's Perl (v5.8.7 built for MSWin32-x86-multi-thread).</p> <p>I've just emerged from a three hour long debugging session, trying to find the source of an error. I found there was simply no error, but for some reason ADO's connection object was getting the <code>Errors.Count</code> increased with each printed message in my stored procedure's output.</p> <p>Consider following Transact SQL code:</p> <pre><code>CREATE PROCEDURE dbo.My_Sample() AS BEGIN TRAN my_tran -- Does something useful if @@error &lt;&gt; 0 BEGIN ROLLBACK TRAN my_tran RAISERROR( 'SP My_Sample failed', 16, 1) END ELSE BEGIN COMMIT TRAN my_tran PRINT 'SP My_Sample succeeded' END </code></pre> <p>Now imagine a Perl sub more or less like:</p> <pre><code>sub execute_SQL { # $conn is an already opened ADO connection object # pointing to my SQL Server # $sql is the T-SQL statement to be executed my($conn, $sql) = @_; $conn-&gt;Execute($sql); my $error_collection = $conn-&gt;Errors(); my $ecount = $error_collection-&gt;Count; if ($ecount == 0 ) { return 0; } print "\n" . $ecount . " errors found\n"; print "Executed SQL Code:\n$sql\n\n"; print "Errors while executing:\n"; foreach my $error (in $error_collection){ print "Error: [" . $error-&gt;{Number} . "] " . $error-&gt;{Description} . "\n"; } return 1; } </code></pre> <p>Somewhere else, in the main Perl code, I'm calling the above sub as:</p> <pre><code>execute_SQL( $conn, 'EXEC dbo.My_Sample' ); </code></pre> <p>In the end I got it that <em>every</em> PRINT statement causes a new pseudo-error to be appended to the ADO Errors collection. The quick fix I implemented was to change that PRINT in the SP into a SELECT, to bypass this.</p> <p>The questions I'd like to ask are:</p> <ul> <li>Is this behaviour normal?</li> <li>Is there a way to avoid/bypass it?</li> </ul> http://stackoverflow.com/questions/223618/perl-ado-thinks-printed-output-in-stored-procedure-is-an-error/227041#227041 1 Answer by Joe Pineda for Perl ADO thinks printed output in stored procedure is an error! Joe Pineda 2008-10-22T18:37:03Z 2008-10-22T22:13:38Z <p>OK, after a <strong>lot</strong> of testing and reading, I came to found it explained in the BOLs' article "Using PRINT" (my emphasis):</p> <blockquote> <p>The PRINT statement is used to return messages to applications. PRINT takes either a character or Unicode string expression as a parameter and returns the string as a message to the application. The message is returned as an informational error to applications using the SQLClient namespace or the ActiveX Data Objects (ADO), OLE DB, and Open Database Connectivity (ODBC) application programming interfaces (APIs). <strong>SQLSTATE is set to 01000, the native error is set to 0, and the error message string is set to the character string specified in the PRINT statement.</strong> The string is returned to the message handler callback function in DB-Library applications.</p> </blockquote> <p>Armed with this knowledge I adapted this VB6 from <a href="http://www.devx.com/tips/Tip/13483" rel="nofollow">this DevX article</a> until I got this:</p> <pre><code>sub execute_SQL { # $conn is an already opened ADO connection object # pointing to my SQL Server # $sql is the T-SQL statement to be executed # Returns 0 if no error found, 1 otherwise my($conn, $sql) = @_; $conn-&gt;Execute($sql); my $error_collection = $conn-&gt;Errors(); my $ecount = $error_collection-&gt;Count; if ($ecount == 0 ) { return 0; } my ($is_message, $real_error_found); foreach my $error (in $error_collection){ $is_message = ($error-&gt;{SQLState} eq "01000" &amp;&amp; $error-&gt;{NativeError}==0); $real_error_found=1 unless $is_message; if( $is_message) { print "Message # " . $error-&gt;{Number} . "\n Text: " . $error-&gt;{Description} ."\n"; } else { print "Error # " . $error-&gt;{Number} . "\n Description: " . $error-&gt;{Description} . "\nSource: " . $error-&gt;{Source} . "\n"; } } print $message_to_print; return $real_error_found; } </code></pre> <p>So now my Perl sub correctly sorts out real errors (emitted from SQL Server via a RaisError) and a common message outputted via "PRINT".</p> <p>Thanks to Richard Harrison for his answer which lead me to the way of success.</p> http://stackoverflow.com/questions/226970/whats-the-best-open-source-game-ever/227086#227086 5 Answer by Joe Pineda for What's the best open source game ever? Joe Pineda 2008-10-22T18:47:41Z 2008-10-22T18:47:41Z <p>What? No one here likes <a href="http://en.wikipedia.org/wiki/Tux_Racer" rel="nofollow">Tux Racer</a>?</p> <p>I just LOVE that game!!! It's fast paced and can run on almost any decent modern computer (no need for expensive video cards). And it runs on Windows, too!! Furthermore, it demonstrates that "penguins can fly" (and even surpass speed of sound :P)</p> http://stackoverflow.com/questions/204831/how-can-i-try-a-new-language-or-framework-without-installing-it/213797#213797 0 Answer by Joe Pineda for How can I try a new language or framework without installing it? Joe Pineda 2008-10-17T20:48:02Z 2008-10-17T20:48:02Z <p>You can also try <a href="http://heroku.com/features" rel="nofollow">Heroku</a> for Ruby on Rails, and <a href="http://appjet.com" rel="nofollow">AppJet</a> for server-side JavaScript.</p> <p>Slightly off-topic, but I highly recommend the "Why's Poignant Guide to Ruby" from the same guy who developed the "Try Ruby" site - you won't believe how fast and easy it's to learn Ruby, aided by cartoons!</p> http://stackoverflow.com/questions/212842/what-can-perform-cheat-engine-like-tasks-in-linux/213685#213685 -1 Answer by Joe Pineda for What can perform Cheat-Engine like tasks in Linux? Joe Pineda 2008-10-17T20:13:43Z 2008-10-17T20:13:43Z <p>WOW!!! Didn't know something like that existed for Windows! Thanks for sharing!</p> <p>SNES9X had a similar capability to hack, tweak and even re-program SNES ROM images while playing them (I read it was inspired by the Game Genie), I used that a lot when on my teens to get infinite ammo, life, hidden scenes or characters, etc. on SNES games...</p> <p>To be quite honest with you, had you not posted this before I would've considered it simply impossible to do something like for any version of Windows>=NT, or Linux... Why? Because supposedly now we have more memory protection (hardware enforced when possible) to avoid precisely these kind of situations: one process overwriting data from another process.</p> <p>I would've thought it possible only for console ROMs because technically the whole ROM is data to the emulator, so it's not someone else's data. The same could be said if you made your own Flash player. But this program is here and working on Windows <strong>executables</strong>! Truly impressive.</p> <p>Now then, you can download an old version's code from <a href="http://www.heijnen1.demon.nl/" rel="nofollow">this page</a>, the author also says over there that you can mail him to ask him latest version's code.</p> <p>You can try porting it for Linux. It's written in Delphi, might be compilable after some minor tweaks with a modern Pascal compiler.</p> http://stackoverflow.com/questions/212657/how-do-i-disable-query-results-when-executing-a-stored-procedure-from-a-stored-pr/213328#213328 0 Answer by Joe Pineda for How do I disable query results when executing a stored procedure from a stored procedure? Joe Pineda 2008-10-17T18:37:36Z 2008-10-17T18:37:36Z <p>Probably the error comes from too much recordsets being returned, rather than a logic flaw on your SP or the cursor itself. Look at this example:</p> <pre><code>DECLARE @I INT SET @I=0 WHILE @I&lt;200 BEGIN SELECT * FROM INFORMATION_SCHEMA.TABLES SET @I = @I + 1 END </code></pre> <p>Will run a number of times (slightly more than 100) then fail with:</p> <blockquote> <p>The query has exceeded the maximum number of result sets that can be displayed in the results grid. Only the first 100 result sets are displayed in the grid.</p> </blockquote> <p>The SSMS has a limit on the number of record-sets it can show you. One quick way to by-pass that limitation is to press Ctrl+T (or menu Query->Results to->Results to Text) to force the output to be in plain text, rather than table-like recordsets. You'll reach another limit eventually (the results window can't handle an infinite amount of text output) yet it will be far greater.</p> <p>In the sample above you don't get the error after changing the results to be in text form!</p> http://stackoverflow.com/questions/1129923/is-a-join-faster-than-a-where/1129972#1129972 Comment by Joe Pineda on Is a JOIN faster than a WHERE ? Joe Pineda 2009-10-31T18:57:35Z 2009-10-31T18:57:35Z Really interesting. Could you provide a reference for this behaviour, please? This would mean that putting a filtering condition at the ON clause rather than at the WHERE, which can give different results on SQL Server, would be exactly the same here! http://stackoverflow.com/questions/1129923/is-a-join-faster-than-a-where/1139715#1139715 Comment by Joe Pineda on Is a JOIN faster than a WHERE ? Joe Pineda 2009-10-31T18:51:59Z 2009-10-31T18:51:59Z Clarification: by &quot;this behaviour&quot; I mean the behaviour of evaluating first ON, then WHERE. Theo stated in his answer that SQLite first converts JOIN...ON to a WHERE clause. If this is true (don't know, can't verify now) then evaluating ON first, WHERE second might be very specific to SQL Server (possibly also Sybase). http://stackoverflow.com/questions/1129923/is-a-join-faster-than-a-where/1139715#1139715 Comment by Joe Pineda on Is a JOIN faster than a WHERE ? Joe Pineda 2009-10-31T18:33:58Z 2009-10-31T18:33:58Z Ah, loved this answer! Found thru trial and error that SQL S. executes first the ON, then WHERE, finally HAVING. Normally doesn't matter, except on certain situations where NULLs are involved - having a filtering condition at the ON or at the WHERE can make a <i>big</i> difference in such cases. Now I'd like to ask, is this behaviour ANSI standard mandated or SQL Server-specific? If you're not sure, I might open a question on this! http://stackoverflow.com/questions/385297/whats-wrong-with-c-compared-to-other-languages/385499#385499 Comment by Joe Pineda on What's wrong with C++ compared to other languages? Joe Pineda 2009-03-28T17:36:40Z 2009-03-28T17:36:40Z I've read Comeau's compiler's the one which most faithfully implements the C++ standard, even more than GCC. GNU's C++ is fine except their non-standard &quot;features&quot; (some of which I consider frankly idiotic and running against the spirit of the languages). http://stackoverflow.com/questions/139630/whats-the-difference-between-truncate-and-delete-in-sql/139633#139633 Comment by Joe Pineda on What's the difference between TRUNCATE and DELETE in SQL Joe Pineda 2009-03-27T13:34:14Z 2009-03-27T13:34:14Z Some more comments: I disagree with your 3rd statement, unless it's Oracle-specific. At least with SQL S. either if you DELETE or TRUNCATE you don't recover space (i.e. database files don't shrink on the hard drive) unless you specifically ask for it. http://stackoverflow.com/questions/139630/whats-the-difference-between-truncate-and-delete-in-sql/139633#139633 Comment by Joe Pineda on What's the difference between TRUNCATE and DELETE in SQL Joe Pineda 2009-03-27T13:32:44Z 2009-03-27T13:32:44Z Don't understand your 4th statement: if I say DELETE [*] FROM Table; then <i>all</i> rows in that table will be deleted unless a FK stops it. By the way, I guess this is SQL Server-specific, you can't use TRUNCATE on tables with FKs. http://stackoverflow.com/questions/628526/is-short-circuiting-boolean-operators-mandated-in-c-c-and-evaluation-order/628554#628554 Comment by Joe Pineda on Is short-circuiting boolean operators mandated in C/C++? And evaluation order? Joe Pineda 2009-03-10T17:26:41Z 2009-03-10T17:26:41Z But complexity of compilers would grow, so probably only math applications would benefit. Probably my dream of stating my overloaded operators are deterministic, idempotent, etc. is better left for LISP-like languages with their lazy evaluation, memoization, etc. http://stackoverflow.com/questions/628526/is-short-circuiting-boolean-operators-mandated-in-c-c-and-evaluation-order/628554#628554 Comment by Joe Pineda on Is short-circuiting boolean operators mandated in C/C++? And evaluation order? Joe Pineda 2009-03-10T17:21:01Z 2009-03-10T17:21:01Z Gave it some thought, came to conclude short-circuited-ness depends on Boolean operators being idem-potent for some values, and having each a neuter element. It would be cool being able to let C++ know our redefined &amp;&amp;/|| are idem-potent for some operands, and which operand is the neuter. http://stackoverflow.com/questions/628526/is-short-circuiting-boolean-operators-mandated-in-c-c-and-evaluation-order Comment by Joe Pineda on Is short-circuiting boolean operators mandated in C/C++? And evaluation order? Joe Pineda 2009-03-10T04:09:44Z 2009-03-10T04:09:44Z I redefined these operators a while ago, when I created a class that would do some basic boolean algebra operations. Probably should stick a warning comment &quot;this destroys short circuiting and left-right evaluation!&quot; in case I forget this. Also overloaded */+ and made them their synonyms :-) http://stackoverflow.com/questions/628526/is-short-circuiting-boolean-operators-mandated-in-c-c-and-evaluation-order/628538#628538 Comment by Joe Pineda on Is short-circuiting boolean operators mandated in C/C++? And evaluation order? Joe Pineda 2009-03-10T04:06:30Z 2009-03-10T04:06:30Z I wish I could accept both Checkers and this answer. Since I'm mostly interested in C++, I'm accepting the other one, though have to admit this is superb, too! Thank you very much! http://stackoverflow.com/questions/628526/is-short-circuiting-boolean-operators-mandated-in-c-c-and-evaluation-order/628554#628554 Comment by Joe Pineda on Is short-circuiting boolean operators mandated in C/C++? And evaluation order? Joe Pineda 2009-03-10T04:02:39Z 2009-03-10T04:02:39Z I find this sad. I would've thought that, should I redefined operators &amp;&amp; and || <i>and they're still fully deterministic</i>, the compiler would detect that and keep their evaluation short-circuited: after all, order is irrelevant, an they guarantee no side effects! http://stackoverflow.com/questions/628526/is-short-circuiting-boolean-operators-mandated-in-c-c-and-evaluation-order/628554#628554 Comment by Joe Pineda on Is short-circuiting boolean operators mandated in C/C++? And evaluation order? Joe Pineda 2009-03-10T00:40:38Z 2009-03-10T00:40:38Z Didn't know short-circuiting wouldn't apply to overloaded logic ops, that's intesting. Can you please add a reference to the standard, or a source? I'm not distrusting you, just want to learn more about this. http://stackoverflow.com/questions/628526/is-short-circuiting-boolean-operators-mandated-in-c-c-and-evaluation-order/628538#628538 Comment by Joe Pineda on Is short-circuiting boolean operators mandated in C/C++? And evaluation order? Joe Pineda 2009-03-10T00:38:25Z 2009-03-10T00:38:25Z Ah, what I was looking for! OK, so both evaluation order <i>and</i> short-circuiting are mandated as per ANSI-C 99! I'd really love to see teh equivalent reference for ANSI-C++, though I'm almost 99% it must be the same. http://stackoverflow.com/questions/625333/how-to-limit-the-impact-of-implementation-dependent-language-features-in-c/626581#626581 Comment by Joe Pineda on How to limit the impact of implementation-dependent language features in C++? Joe Pineda 2009-03-10T00:06:34Z 2009-03-10T00:06:34Z I <i>know</i> both C and C++ short circuit. What I believe they don't, is enforce short-circuiting as part of the language. Though you're right on being OT to the question, I shall better ask a separate question. http://stackoverflow.com/questions/617143/what-are-some-good-strategies-for-dealing-with-magic-numbers-in-your-database/617164#617164 Comment by Joe Pineda on what are some good strategies for dealing with magic numbers in your database? Joe Pineda 2009-03-09T15:12:43Z 2009-03-09T15:12:43Z You can also create deterministic UDFs on SQL Server, I've used both this approach and the &quot;Configurations&quot; table approach proposed by Ken White et all. The UDF gives you better performance, but values aren't as straight-forward to change.