User Giacomo Degli Esposti - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T12:20:07Z http://stackoverflow.com/feeds/user/20796 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/132241/hidden-features-of-c/132269#132269 15 Answer by Giacomo Degli Esposti for Hidden features of C Giacomo Degli Esposti 2008-09-25T09:10:07Z 2009-11-03T15:00:04Z <p>Well... I think that one of the strong points of C language is its portability and standardness, so whenever I find some "hidden trick" in the implementation I am currently using, I try not to use it because I try to keep my C code as standard and portable as possible.</p> http://stackoverflow.com/questions/180358/delphi-versus-c-builder-which-is-better-choice-for-a-java-programmer-doing-wi/180411#180411 2 Answer by Giacomo Degli Esposti for Delphi versus C++ Builder - Which is Better Choice for a Java Programmer Doing Win32 Giacomo Degli Esposti 2008-10-07T21:04:38Z 2008-10-07T21:04:38Z <p>Of course java sintax is more like c++ than like delphi, but I think that the object model is more similar to delphi:</p> <ul> <li>single inheritance. Interfaces exist but are more like COM than like java interfaces.</li> <li>objects are allocated on the heap and accessed by reference</li> </ul> <p>you can find a paper comparing the three languages <a href="http://www.marcocantu.com/papers/ooplang.htm" rel="nofollow">here</a></p> http://stackoverflow.com/questions/176159/in-delphi-7-can-i-set-up-debug-and-release-modes/176200#176200 1 Answer by Giacomo Degli Esposti for In Delphi 7, can I set up 'Debug' and 'Release' modes? Giacomo Degli Esposti 2008-10-06T21:07:18Z 2008-10-06T21:14:12Z <p>This feature was added only in Delphi 2009.</p> <p>For older versions of Delphi you can write two copies of .cfg file, one with debug options and one with release options, and compile your program calling <strong>dcc32.exe</strong> from within a batch file.</p> <p>Something like this:</p> <pre><code>rem release.bat copy release.cfg myprog.cfg dcc32 -B myprog.dpr rem debug.bat copy debug.cfg myprog.cfg dcc32 -B myprog.dpr </code></pre> http://stackoverflow.com/questions/132444/workaround-for-spring-hibernate-due-to-non-standard-behaviour-of-unique-constrain/138209#138209 0 Answer by Giacomo Degli Esposti for Workaround for Spring/Hibernate due to non-standard behaviour of UNIQUE constraint in MS SQL Giacomo Degli Esposti 2008-09-26T07:53:15Z 2008-09-26T07:59:08Z <p>I have no experience in Hibernate, so I don't know if you are free to change the DB at your will or if Hibernate requires a specific DB structure you cannot change.</p> <p>If you can make changes then you can use this workaround in MSSQL tu emulate the ANSI behaviour :</p> <p>drop the unique index/constraint</p> <p>define a calc field like this:</p> <pre><code>alter table MyTable Add MyCalcField as case when MyUniqueField is NULL then cast(Myprimarykey as MyUniqueFieldType) else MyUniqueField end </code></pre> <p>add the unique constraint on this new field you created.</p> <p>Naturally this applies if MyUniqueField is not the primary key! :) </p> <p>You can find more details in <a href="http://www.databasejournal.com/features/mssql/article.php/3711501" rel="nofollow">this article at databasejournal.com</a></p> http://stackoverflow.com/questions/133897/how-do-you-find-a-point-a-given-perpendicular-distance-from-a-line/133967#133967 1 Answer by Giacomo Degli Esposti for How do you find a point a given perpendicular distance from a line? Giacomo Degli Esposti 2008-09-25T15:25:03Z 2008-09-25T15:31:28Z <p>You just evaluate the orthogonal versor and multiply by N/2 </p> <pre><code>vx = x2-x1 vy = y2-y1 len = sqrt( vx*vx + vy*vy ) ux = -vy/len uy = vx/len x3 = x1 + N/2 * ux Y3 = y1 + N/2 * uy x4 = x1 - N/2 * ux Y4 = y1 - N/2 * uy </code></pre> http://stackoverflow.com/questions/133648/insert-a-fixed-number-of-rows-2000-at-a-time-in-sql-server/133852#133852 4 Answer by Giacomo Degli Esposti for Insert a fixed number of rows 2000 at a time in sql server Giacomo Degli Esposti 2008-09-25T15:02:34Z 2008-09-25T15:02:34Z <p>You can use the SELECT TOP clause: in MSSQL 2005 it was extended allowing you to use a variable to specify the number of records (older version allowed only a numeric constant)</p> <p>You can try something like this: (untested, because I have no access to a MSSQL2005 at the moment)</p> <pre><code>begin declare @n int, @rows int select @rows = count(*) from sourcetable select @n=0 while @n &lt; @rows begin insert into desttable select top 2000 * from sourcetable where id_sourcetable not in (select top (@n) id_sourcetable from sourcetable order by id_sourcetable) order by id_sourcetable select @n=@n+2000 end end </code></pre> http://stackoverflow.com/questions/133393/password-encryption-in-delphi/133552#133552 2 Answer by Giacomo Degli Esposti for Password encryption in Delphi Giacomo Degli Esposti 2008-09-25T14:08:04Z 2008-09-25T14:08:04Z <p>I think Turbopower LockBox is an excellent library for criptography:</p> <p><a href="http://sourceforge.net/projects/tplockbox/" rel="nofollow">http://sourceforge.net/projects/tplockbox/</a></p> <p>I don't know if it's too big for your uses but it is very easy to use and you can encrypt a string with 5 lines of code. It is all in the examples. </p> http://stackoverflow.com/questions/132725/are-delphi-variables-initialized-with-a-value-by-default/132770#132770 13 Answer by Giacomo Degli Esposti for Are delphi variables initialized with a value by default? Giacomo Degli Esposti 2008-09-25T11:41:38Z 2008-09-25T11:41:38Z <p>Yes, this is the documented behaviour:</p> <ul> <li><p>Object fields are always initialized to 0, 0.0, '', False, nil or whatever applies.</p></li> <li><p>Global variables are always initialized.</p></li> <li><p>Local variables are unitialized so you have to assign a value before you can use them. </p></li> </ul> http://stackoverflow.com/questions/132299/is-there-an-easy-way-to-port-a-win32-app-in-delphi-2009-to-net/132352#132352 3 Answer by Giacomo Degli Esposti for Is there an easy way, to Port a Win32 App in Delphi 2009 to .NET ? Giacomo Degli Esposti 2008-09-25T09:40:54Z 2008-09-25T09:40:54Z <p>Remember that D2009 is a win32 version, and not .net. I suppose you want to make a two steps path, first move to D2009 and then to .net ?</p> <p>Luckily, delphi is a very stable platform and it is much easier to convert old applications to latest version, but you have different thing to consider.</p> <p>If your application is using BDE to access a Db then convert it to use some other technology, like ADO or DBX. </p> <p>If you use 3rd party components, be sure there exist versions for D2009 and/or .NET</p> <p>A very delicate aspect is string handling. If you use strings "normally" you should have no big problems, but if you use strings as "byte buffers" like you do in C then you have to be careful and try to rewrite that parts. A rule of thumb is "try to get rid of all PChar's in your code". </p> http://stackoverflow.com/questions/131196/convert-console-exe-to-dll-in-c/132191#132191 1 Answer by Giacomo Degli Esposti for Convert console exe to dll in C Giacomo Degli Esposti 2008-09-25T08:47:45Z 2008-09-25T08:47:45Z <p>You can execute a console application and capture its output using pipes. You use une side of the pipe as stdout for the CreateProcess and you read from the other side like a common file.</p> <p>You can see a working example written in delphi here: <a href="http://delphi.about.com/cs/adptips2001/a/bltip0201_2.htm" rel="nofollow">http://delphi.about.com/cs/adptips2001/a/bltip0201_2.htm</a></p> http://stackoverflow.com/questions/129919/c-builder-how-to-populate-a-database-with-filenames-from-a-dir-and-its-subdir/130025#130025 0 Answer by Giacomo Degli Esposti for C++ (Builder) How to populate a database with filenames from a dir and its subdirs. Giacomo Degli Esposti 2008-09-24T21:12:41Z 2008-09-24T21:12:41Z <p>You basically neeed to write a recursive function with a TDataSet parameter.</p> <p>(I could not compile my code, so you get it "as is")</p> <pre><code>void AddFiles(AnsiString path, TDataSet *DataSet) { TSearchRec sr; int f; f = FindFirst(path+"\\*.*", faAnyFile, sr); while( !f ) { if(sr.Attr &amp; faDirectory) { if(sr.Name != "." &amp;&amp; sr.Name != "..") { path.sprintf("%s%s%s", path, "\\", sr.Name); AddFiles(path, DataSet); } } else { DataSet-&gt;Append(); DataSet-&gt;FieldByName("Name")-&gt;Value = sr.Name; /* other fields ... */ DataSet-&gt;Post(); } f = FindNext(sr); } FindClose(sr); } </code></pre> http://stackoverflow.com/questions/129861/how-can-i-query-the-name-of-the-current-sql-server-database-instance/129893#129893 1 Answer by Giacomo Degli Esposti for How can I query the name of the current SQL Server database instance? Giacomo Degli Esposti 2008-09-24T20:51:35Z 2008-09-24T20:51:35Z <p>You can use <strong>DB_NAME</strong> :</p> <p>select DB_NAME()</p> http://stackoverflow.com/questions/129655/survey-how-do-you-define-the-term-bug/129727#129727 0 Answer by Giacomo Degli Esposti for Survey: How do you define the term "bug"? Giacomo Degli Esposti 2008-09-24T20:25:56Z 2008-09-24T20:25:56Z <p>A "bug" and a "hidden feature" are more or less the same thing: "a behaviour that is different from specifications" but you call it a bug if you don't like the unexpeced behaviour and you call it a feature if you find it useful. It is all in the eye of the beholder!</p> http://stackoverflow.com/questions/123330/why-should-i-have-two-monitors/123393#123393 0 Answer by Giacomo Degli Esposti for Why should I have two monitors? Giacomo Degli Esposti 2008-09-23T19:51:07Z 2008-09-23T19:51:07Z <p>Second monitor is really useful when you develop graphic-related application: on one monitor you keep the debugged application (maybe even "full screen" and at a different screen resolution) and on the other the debugger.</p> http://stackoverflow.com/questions/123198/how-do-i-copy-a-file-in-python/123225#123225 1 Answer by Giacomo Degli Esposti for How do I copy a file in python? Giacomo Degli Esposti 2008-09-23T19:27:07Z 2008-09-23T19:27:07Z <p>Look at module <strong>shutils</strong>. It contains function <strong>copyfile</strong>(<em>src</em>, <em>dst</em>) </p> http://stackoverflow.com/questions/315185/what-is-the-sql-to-query-sqlserver-system-databases-to-find-an-db-object/315195#315195 Comment by Giacomo Degli Esposti on What is the sql to query SqlServer system databases to find an DB object? Giacomo Degli Esposti 2008-11-24T23:34:30Z 2008-11-24T23:34:30Z sysobjects is now depracated by MS. You should use sys.objects instead. http://stackoverflow.com/questions/180358/delphi-versus-c-builder-which-is-better-choice-for-a-java-programmer-doing-wi/180400#180400 Comment by Giacomo Degli Esposti on Delphi versus C++ Builder - Which is Better Choice for a Java Programmer Doing Win32 Giacomo Degli Esposti 2008-10-07T21:10:27Z 2008-10-07T21:10:27Z You have no GC and have to manually free objects in c++builder too. http://stackoverflow.com/questions/132444/workaround-for-spring-hibernate-due-to-non-standard-behaviour-of-unique-constrain Comment by Giacomo Degli Esposti on Workaround for Spring/Hibernate due to non-standard behaviour of UNIQUE constraint in MS SQL Giacomo Degli Esposti 2008-09-26T08:12:18Z 2008-09-26T08:12:18Z ANSI behaviour is that NULL = NULL is not true, so two NULL values should be allowed in a unique constraint http://stackoverflow.com/questions/133648/insert-a-fixed-number-of-rows-2000-at-a-time-in-sql-server/135522#135522 Comment by Giacomo Degli Esposti on Insert a fixed number of rows 2000 at a time in sql server Giacomo Degli Esposti 2008-09-25T23:41:24Z 2008-09-25T23:41:24Z I confirm, the use of a variable was added with SQL2005 http://stackoverflow.com/questions/132725/are-delphi-variables-initialized-with-a-value-by-default/132877#132877 Comment by Giacomo Degli Esposti on Are delphi variables initialized with a value by default? Giacomo Degli Esposti 2008-09-25T13:59:17Z 2008-09-25T13:59:17Z In delphi 2006 help you can find it here: ms-help://borland.bds4/bds4ref/html/Variables.htm &quot;If you don't explicitly initialize a global variable, the compiler initializes it to 0. Object instance data (fields) are also initialized to 0. &quot; http://stackoverflow.com/questions/132725/are-delphi-variables-initialized-with-a-value-by-default/132824#132824 Comment by Giacomo Degli Esposti on Are delphi variables initialized with a value by default? Giacomo Degli Esposti 2008-09-25T13:57:21Z 2008-09-25T13:57:21Z I found it! :) In delphi 2006 help you can find it here: ms-help://borland.bds4/bds4ref/html/Variables.htm &quot;If you don't explicitly initialize a global variable, the compiler initializes it to 0. Object instance data (fields) are also initialized to 0. &quot; http://stackoverflow.com/questions/132725/are-delphi-variables-initialized-with-a-value-by-default/132824#132824 Comment by Giacomo Degli Esposti on Are delphi variables initialized with a value by default? Giacomo Degli Esposti 2008-09-25T13:03:15Z 2008-09-25T13:03:15Z I read it in the guide, but I cannot find it. Anyway it is referred in the &quot;style guide&quot; of Jedi group: <a href="http://homepages.borland.com/jedi/jcl/documents/styleguide.html" rel="nofollow">homepages.borland.com/jedi/jcl/&hellip;</a>