User Erick Sasse - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T08:56:43Zhttp://stackoverflow.com/feeds/user/2089http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1852290/error-message-incorrect-values-within-sqlda-structure-with-firebird-and-delphi/1857492#18574921Answer by Erick Sasse for Error message "Incorrect values within SQLDA structure" with Firebird and Delphi 2009Erick Sasse2009-12-07T02:37:35Z2009-12-07T02:37:35Z<p>This is the kind of crypt error that Delphi's Interbase driver is used to show.</p>
<p>I've seen this problem when you have different numbers of parameters in your SQL statement and the ones defined in your query component.</p>
http://stackoverflow.com/questions/1600340/is-there-some-way-to-load-the-tsqlconnection-params-from-an-ini-file-in-design-ti/1600882#16008823Answer by Erick Sasse for Is there some way to load the TSQLConnection params from an ini file in design time?Erick Sasse2009-10-21T13:33:37Z2009-10-21T13:33:37Z<p>One way is to write your own TSQLConnection descendent.</p>
http://stackoverflow.com/questions/502949/is-it-possible-to-call-a-user-defined-function-without-the-schema-name1Is it possible to call a user-defined function without the schema name?Erick Sasse2009-02-02T11:51:18Z2009-10-07T14:58:32Z
<p>I'm using MS SQL 2005 and when I create a function I need to put the schema name to call it:</p>
<pre><code>select dbo.MyFunc
</code></pre>
<p>All my tables are also in "dbo" schema and I don't need the schema name to reference it, so I'd like to know if I'm missing some configuration that could do the same to functions.</p>
http://stackoverflow.com/questions/1138397/what-files-to-keep-under-version-control-on-iphone-projects2What files to keep under version control on iPhone projects?Erick Sasse2009-07-16T15:23:08Z2009-07-16T19:11:18Z
<p>I found <a href="http://stackoverflow.com/questions/236151/best-practices-for-using-version-controlling-on-cocoa-projects">this previous question</a> about Cocoa projects, but I wanted to know if it's the same for iPhone projects.</p>
http://stackoverflow.com/questions/1122726/mvp-other-constructors-parameters-than-view-and-model/1124901#11249011Answer by Erick Sasse for MVP : other constructor's parameters than view and model ?Erick Sasse2009-07-14T11:51:05Z2009-07-14T11:51:05Z<p>I'd create a generic view/presenter with parameters and subclass only when needed.</p>
http://stackoverflow.com/questions/400114/is-it-possible-to-create-databases-programmatically-using-dbx3Is it possible to create databases programmatically using DBX?Erick Sasse2008-12-30T12:03:47Z2009-06-05T12:44:16Z
<p>Looks like the TSQLConnection only connects to existing databases, and I could not find another component that allows me to send commands to the database server.</p>
<p>I'm using Delphi 2009 with Firebird and MSSQL.</p>
<p>One idea that came was to connect to a system database (master or tempdb in MSSQL for example) and then send create commands to the server. This could be an option for MSSQL, but I'm not sure for Firebird.</p>
<p>I'm also aware of the new DBX metadata in Delphi 2009, but I couldn't find a way to create databases using it. All examples I've found is to modify existing databases.</p>
http://stackoverflow.com/questions/869490/convert-frames-to-ntsc-drop-frame-timecode2Convert frames to NTSC Drop Frame TimecodeErick Sasse2009-05-15T15:52:59Z2009-05-15T18:59:29Z
<p>I'm looking for a function that converts an integer value in frames to NTSC Drop Frame Timecode (hh:mm:ss.ff).</p>
<p>I'm using Delphi, but could be in any language.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/182475/how-to-avoid-rounding-problems-when-comparing-currency-values-in-delphi3How to avoid rounding problems when comparing currency values in Delphi?Erick Sasse2008-10-08T12:26:17Z2009-05-06T15:55:04Z
<p>AFAIK, Currency type in Delphi Win32 depends on the processor floating point precision. Because of this I'm having rounding problems when comparing two Currency values, returning different results depending on the machine.</p>
<p>For now I'm using the SameValue function passing a Epsilon parameter = 0.009, because I only need 2 decimal digits precision.</p>
<p>Is there any better way to avoid this problem?</p>
http://stackoverflow.com/questions/520338/create-a-type-with-default-value-and-check-constraint-in-sql-server-20050Create a type with default value and check constraint in SQL Server 2005Erick Sasse2009-02-06T13:47:55Z2009-04-11T18:11:20Z
<p>What's the recommended way to create a type in MSSQL 2005 with a default value and a check constraint to be used in several columns?</p>
<p>I don't want to add a check constraint and a default value for every single column.</p>
<p>My first idea was to create a default and a rule to bind to this type but books online clearly states that we should avoid using CREATE DEFAULT and CREATE RULE for new development because these commands will be removed in a future version.</p>
http://stackoverflow.com/questions/727788/how-to-use-variable-for-database-name-in-t-sql1How to use variable for database name in t-sqlErick Sasse2009-04-07T22:04:19Z2009-04-07T22:13:00Z
<p>I use the database name in several places in my script and I want to be able to quickly change it, so I'm looking for something like this:</p>
<pre><code>DECLARE @DBNAME VARCHAR(50)
SET @DBNAME = 'TEST'
CREATE DATABASE @DBNAME
GO
ALTER DATABASE @DBNAME SET COMPATIBILITY_LEVEL = 90
GO
ALTER DATABASE @DBNAME SET RECOVERY SIMPLE
GO
</code></pre>
<p>But it doesn't work.
So what's the correct way to write this code?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/689500/delphi-silently-cropping-string-literals5Delphi silently cropping string literalsErick Sasse2009-03-27T12:01:46Z2009-03-30T16:51:47Z
<p>Delphi 2009 Win32.</p>
<p>The code below tries to add a 257 length string to a memo.
It compiles and runs fine, but nothing is added to the memo.</p>
<pre><code>Memo1.Lines.Add('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa');
</code></pre>
<p>Looks like a compiler bug. Is it? Because if the string was 256 long, I'd get a compiler error and couldn't compile the app.</p>
<p>Any way to make the app break when the developer tries to do something like this?</p>
<p>I know I could split the string and make this code work, but my point is to prevent developers for using this invalid code without noticing.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/420022/why-sometimes-i-get-an-invalid-transaction-object-exception/607738#6077380Answer by Erick Sasse for Why sometimes I get an "Invalid transaction object" exception?Erick Sasse2009-03-03T19:17:04Z2009-03-03T19:17:04Z<p>The problem is that SQLConnection.BeginTransaction returns nil if SQLConnection is not Connected to the database. And then I get the exception of invalid transaction object.</p>
<p>I never expected that. It should try to connect or raise an exception. Returning nil doesn't make sense to me.</p>
http://stackoverflow.com/questions/420022/why-sometimes-i-get-an-invalid-transaction-object-exception0Why sometimes I get an "Invalid transaction object" exception?Erick Sasse2009-01-07T11:48:49Z2009-03-03T19:17:04Z
<p>Is there something wrong with this code?<br />
Sometimes I get an unhandled "Invalid transaction object" exception in it:</p>
<pre><code>procedure BlaBla;
var
TD: TDBXTransaction;
begin
TD := SQLConnection.BeginTransaction;
try
SQLConnection.ExecuteDirect('some sql command');
SQLConnection.ExecuteDirect('some sql command');
SQLConnection.CommitFreeAndNil(TD);
except
SQLConnection.RollbackFreeAndNil(TD);
end;
end;
</code></pre>
<p>This exception is being raised to the user, so I assume it's raised by RollbackFreeAndNil, since all rest is inside a try..except.</p>
<p>Should I wrap RollbackFreeAndNil with another try..except? What a mess.</p>
<p>I'm using Delphi 2009, DBX with Firebird 2.1 and Devart's driver.</p>
http://stackoverflow.com/questions/581962/best-way-to-do-serializable-updates-to-a-table1Best way to do serializable updates to a tableErick Sasse2009-02-24T14:37:16Z2009-02-24T15:58:25Z
<p>I'm a long time Firebird user and it has a feature called Generators (I think Oracle also has it and it's called Sequences). I'm new to SQL Server and I need to simulate the same feature. I can't use an identity field to solve my problem. I need a named series of values, not a unique number for each row.</p>
<p>My biggest concern was about more than one user calling the procedure at the same time and getting duplicated values, so I decided to lock using the SERIALIZABLE isolation level.</p>
<p>So I came up with this code (I'm using SQL Server 2005):</p>
<pre><code>CREATE TABLE dbo.GENERATORS
(
[NAME] VARCHAR(30) NOT NULL,
[VALUE] INT,
CONSTRAINT UNQ_GENERATORS_NAME UNIQUE NONCLUSTERED ( [NAME] )
)
GO
CREATE PROCEDURE GEN_ID
(
@GENERATOR_NAME VARCHAR(30)
)
AS
DECLARE @RETURN_VALUE INT ;
SET NOCOUNT ON
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
BEGIN TRANSACTION
UPDATE GENERATORS
SET [VALUE] = [VALUE] + 1
WHERE [NAME] = @GENERATOR_NAME
IF @@ROWCOUNT = 0
BEGIN
INSERT INTO dbo.GENERATORS ( [NAME], [VALUE] )
VALUES ( @GENERATOR_NAME, 1 )
SET @RETURN_VALUE = 1
END
ELSE
BEGIN
SELECT @RETURN_VALUE = [VALUE]
FROM GENERATORS
WHERE [NAME] = @GENERATOR_NAME
END
COMMIT TRANSACTION
RETURN @RETURN_VALUE
GO
</code></pre>
<p>So my questions are:</p>
<ul>
<li>Is this a good solution?</li>
<li>Is there any better way?</li>
</ul>
<p>Thanks.</p>
http://stackoverflow.com/questions/558667/how-to-get-a-list-of-fields-in-a-unique-constraint0How to get a list of fields in a unique constraintErick Sasse2009-02-17T20:53:05Z2009-02-17T20:58:17Z
<p>I have a table with a unique constraint on one or more fields. Given the constraint name, I want to query the system views to get the list of fields that are part of this constraint.</p>
<p>SQL Server 2005.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/498731/what-is-the-best-way-to-connect-to-a-mysql-database-in-delphi/499782#4997821Answer by Erick Sasse for What is the best way to connect to a Mysql database in DelphiErick Sasse2009-01-31T23:19:10Z2009-01-31T23:19:10Z<p>You should take a look at <a href="http://www.remobjects.com/anydac.aspx" rel="nofollow">AnyDAC</a>, supports MySQL and a lot of other databases.</p>
http://stackoverflow.com/questions/486304/why-iwsdlpublish-interface-is-added-to-win32-delphi-webservice1Why IWSDLPublish interface is added to Win32 Delphi WebServiceErick Sasse2009-01-28T02:47:14Z2009-01-28T04:09:02Z
<p>I've created a simple CGI application using Delphi 2009 that publishes a web service. When I point my web browser to the app, I can see my web service interface and another interface: IWSDLPublish.</p>
<p>Why is this interface added to my web service?<br />
Do I need it?<br />
Is it possible to not publish this interface?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/472944/unit-testing-delphi-data-modules/474266#4742662Answer by Erick Sasse for Unit-testing Delphi data modulesErick Sasse2009-01-23T19:57:25Z2009-01-23T19:57:25Z<p>Some basic tips:</p>
<ul>
<li>Your DataModules should never have any references to forms or any other UI components</li>
<li>Put the TDataSources on forms and not in your DataModules.</li>
<li>Make sure there isn't any prompts for confirmation and operations that requires user input on DataModules code.</li>
<li>You should not use any global vars.</li>
</ul>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/402800/easiest-way-to-move-outlook-2007-emails-to-gmail/402893#4028930Answer by Erick Sasse for Easiest way to move Outlook 2007 emails to GMail?Erick Sasse2008-12-31T12:33:54Z2008-12-31T12:33:54Z<p>Never tried, but maybe this helps: <a href="http://lifehacker.com/software/gmail/import-old-emails-into-gmail-with-gmail-loader-245457.php" rel="nofollow">http://lifehacker.com/software/gmail/import-old-emails-into-gmail-with-gmail-loader-245457.php</a></p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/400915#4009154Answer by Erick Sasse for How do I compress multiple files into a single archive with DelphiErick Sasse2008-12-30T17:24:29Z2008-12-30T17:24:29Z<p>I recommend <a href="http://www.componentace.com/zip_component_zip_delphi_zipforge.htm" rel="nofollow">ZipForge</a> from ComponentAce.</p>
http://stackoverflow.com/questions/391348/string-truncation-error-in-delphi-dbexpress-firebird-paramatised-queries/393694#3936941Answer by Erick Sasse for String truncation error in Delphi DBExpress/Firebird paramatised queriesErick Sasse2008-12-26T11:24:27Z2008-12-26T11:24:27Z<p>This error message is from Firebird, not DBX. I think DBX sends parameters to the database exactly the way you enter it, so it should be Firebird job to truncate it.</p>
http://stackoverflow.com/questions/325774/delphi-ado-connection-to-dbf-files-hangs-when-debugging2Delphi ADO connection to DBF files hangs when debuggingErick Sasse2008-11-28T13:27:40Z2008-12-01T19:41:49Z
<p>I'm connecting to DBF files using Delphi 2009 ADO components and this connection string:</p>
<pre><code>Driver={Microsoft dBASE Driver (*.dbf)};DriverID=277;Dbq=c:\mypath;
</code></pre>
<p>If c:\mypath doesn't exist, and I run the application inside the debugger, my app hangs. No exception is raised.</p>
<p>If I run the application without debugging, an exception is properly raised.</p>
<p>To reproduce I just create a new application, dropped an TADOConnection on the form, set the connection string and added this code to the OnCreate of the form:</p>
<pre><code>ADOConnection1.Connected := True;
</code></pre>
<p>Any ideas?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/295383/delphi-delete-visual-component-references-from-inherited-forms2Delphi: Delete visual component references from inherited formsErick Sasse2008-11-17T11:42:26Z2008-11-17T12:04:28Z
<p>When I delete a visual component in a base form, and forget any references in inherited forms, my application only breaks in runtime.</p>
<p>What I normally do is to use a search tool to find references in .DFM, but I'm not completely satisfied with this method.</p>
<p>Do you have any better recommendations?</p>
http://stackoverflow.com/questions/272521/sql-server-online-backup-with-mozypro3SQL Server online backup with MozyProErick Sasse2008-11-07T15:54:34Z2008-11-08T18:26:09Z
<p>Anyone using MozyPro to backup SQL Server databases?</p>
<p>I'm concerned about the way it does the backup. It just copies data files the way they are. Not using the backup database command.</p>
<p>Is it safe?</p>
http://stackoverflow.com/questions/102254/hidden-features-of-delphi/103875#10387511Answer by Erick Sasse for Hidden Features of DelphiErick Sasse2008-09-19T17:25:24Z2008-09-19T17:25:24Z<ul>
<li>ESC selects the parent control of the current selected control in the designer. </li>
<li>Ctrl+Drag the mouse to select a group of controls without selecting/moving the parent. When controls are in a panel for example.</li>
<li>Shift+Arrows to resize controls.</li>
<li>Ctrl+Arrows to move controls.</li>
</ul>
http://stackoverflow.com/questions/72983/which-logging-library-is-better/73113#731131Answer by Erick Sasse for Which logging library is better?Erick Sasse2008-09-16T14:44:47Z2008-09-16T14:44:47Z<p>I didn't use CodeSite probably because I'm completely happy with SmartInspect. Highly recommended.</p>
http://stackoverflow.com/questions/68601/svn-hosting-and-defect-tracking/71083#710833Answer by Erick Sasse for SVN hosting (and defect tracking)Erick Sasse2008-09-16T10:37:01Z2008-09-16T10:37:01Z<p>We are using Wush.net for years and it's great. The only thing is that I have plans to use Active Directory for authentication but they didn't suppport it the last time I checked.</p>
http://stackoverflow.com/questions/63957/what-is-the-best-set-of-tools-to-develop-win32-delphi-applications/65188#651880Answer by Erick Sasse for What is the best set of tools to develop Win32 Delphi applications?Erick Sasse2008-09-15T18:00:25Z2008-09-15T18:00:25Z<p>TestComplete for UI testing.</p>
http://stackoverflow.com/questions/33336/documenting-delphi/34469#344691Answer by Erick Sasse for Documenting DelphiErick Sasse2008-08-29T15:37:54Z2008-08-29T15:37:54Z<p>Take a look also at Doc-O-Matic: <a href="http://www.doc-o-matic.com/" rel="nofollow">http://www.doc-o-matic.com/</a></p>
http://stackoverflow.com/questions/7492/how-do-you-stress-test-a-web-application/19593#195931Answer by Erick Sasse for How do you stress test a web application?Erick Sasse2008-08-21T10:34:39Z2008-08-21T10:34:39Z<p>Take a look at <a href="http://www.automatedqa.com/products/testcomplete/tc_lss_testing.asp" rel="nofollow">TestComplete</a>.</p>
http://stackoverflow.com/questions/869490/convert-frames-to-ntsc-drop-frame-timecode/869749#869749Comment by Erick Sasse on Convert frames to NTSC Drop Frame TimecodeErick Sasse2009-07-29T14:56:39Z2009-07-29T14:56:39ZIt's still not right, because drop frame requires you to drop 2 frames per minute except the tenth minute.http://stackoverflow.com/questions/701837/whats-the-iphones-screen-dimensions-for-coding/701851#701851Comment by Erick Sasse on What's the iPhones Screen Dimensions for Coding?Erick Sasse2009-06-29T17:55:48Z2009-06-29T17:55:48ZGoogle is our friend, but StackOverflow is our best friend. ;)http://stackoverflow.com/questions/400114/is-it-possible-to-create-databases-programmatically-using-dbx/955631#955631Comment by Erick Sasse on Is it possible to create databases programmatically using DBX?Erick Sasse2009-06-05T18:30:45Z2009-06-05T18:30:45ZYou are talking about DBX metadata. Look at my comment on Nick Hodges answer.http://stackoverflow.com/questions/869490/convert-frames-to-ntsc-drop-frame-timecode/869749#869749Comment by Erick Sasse on Convert frames to NTSC Drop Frame TimecodeErick Sasse2009-05-15T18:26:10Z2009-05-15T18:26:10ZNTSC Drop Frame Timecode is 29.97 fps, but you code only accepts fps as integer, so I don't think it's right.http://stackoverflow.com/questions/520338/create-a-type-with-default-value-and-check-constraint-in-sql-server-2005/740558#740558Comment by Erick Sasse on Create a type with default value and check constraint in SQL Server 2005Erick Sasse2009-04-13T17:08:19Z2009-04-13T17:08:19ZThis is interesting. Did you do any performance tests?http://stackoverflow.com/questions/727788/how-to-use-variable-for-database-name-in-t-sqlComment by Erick Sasse on How to use variable for database name in t-sqlErick Sasse2009-04-07T22:56:29Z2009-04-07T22:56:29ZSo please, point me to the original question, I couldn't find.http://stackoverflow.com/questions/689500/delphi-silently-cropping-string-literals/689664#689664Comment by Erick Sasse on Delphi silently cropping string literalsErick Sasse2009-03-27T13:26:23Z2009-03-27T13:26:23ZAnd Andreas keep fixing Delphi over and over. :)http://stackoverflow.com/questions/472944/unit-testing-delphi-data-modules/474266#474266Comment by Erick Sasse on Unit-testing Delphi data modulesErick Sasse2009-03-27T11:48:55Z2009-03-27T11:48:55ZI don't use this feature, but I guess in this case you have to put your datasource in DM, but just to connect datasets. See if you can use another Datasource to connect your dataset to visual components.http://stackoverflow.com/questions/420022/why-sometimes-i-get-an-invalid-transaction-object-exception/420424#420424Comment by Erick Sasse on Why sometimes I get an "Invalid transaction object" exception?Erick Sasse2009-03-03T19:12:39Z2009-03-03T19:12:39ZThe problem was not related to my try..except block.http://stackoverflow.com/questions/581962/best-way-to-do-serializable-updates-to-a-table/582321#582321Comment by Erick Sasse on Best way to do serializable updates to a tableErick Sasse2009-02-24T16:57:33Z2009-02-24T16:57:33ZThis is very nice, thanks a lot.http://stackoverflow.com/questions/558667/how-to-get-a-list-of-fields-in-a-unique-constraint/558694#558694Comment by Erick Sasse on How to get a list of fields in a unique constraintErick Sasse2009-02-17T21:02:14Z2009-02-17T21:02:14ZPerfect, thanks!http://stackoverflow.com/questions/520338/create-a-type-with-default-value-and-check-constraint-in-sql-server-2005/521634#521634Comment by Erick Sasse on Create a type with default value and check constraint in SQL Server 2005Erick Sasse2009-02-06T19:21:22Z2009-02-06T19:21:22ZThanks. That's probably what I'm going to do.http://stackoverflow.com/questions/520338/create-a-type-with-default-value-and-check-constraint-in-sql-server-2005/521243#521243Comment by Erick Sasse on Create a type with default value and check constraint in SQL Server 2005Erick Sasse2009-02-06T19:07:15Z2009-02-06T19:07:15ZThat's what I want to do, a user defined data type. But how?
It's a new database, so changing data types is not an issue.http://stackoverflow.com/questions/520338/create-a-type-with-default-value-and-check-constraint-in-sql-server-2005/520381#520381Comment by Erick Sasse on Create a type with default value and check constraint in SQL Server 2005Erick Sasse2009-02-06T16:38:50Z2009-02-06T16:38:50ZAnd it's a shame if you voted my question down just because you didn't pay attention to it and posted a wrong answer.http://stackoverflow.com/questions/520338/create-a-type-with-default-value-and-check-constraint-in-sql-server-2005/520381#520381Comment by Erick Sasse on Create a type with default value and check constraint in SQL Server 2005Erick Sasse2009-02-06T16:37:11Z2009-02-06T16:37:11ZYour are right. I added because you didn't pay attention to the word "TYPE" that was in my original question. "..to create a TYPE...".