User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T09:54:16Zhttp://stackoverflow.com/feeds/user/114285http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/926017/what-patterns-to-use-to-build-layers-for-delphi-win-32-application3What patterns to use to build layers for delphi win 32 applicationcodervish2009-05-29T13:40:10Z2009-09-04T01:57:16Z
<p>I want to develop mysql database application using dbexpress to develop from scratch or work with existing databases. To create reusable layers what patterns-components should I use. I want the app to be scalable to n-tier easily. Tried google search for ready frameworks but I found nothing much informative (some lack documentation, some lack examples). </p>
<p>Something in the veins of famous java frameworks i.batis or hibernate would be useful. I'm familiar using such a framework in PHP to develop xml defined business objects. I tried to convert it to Delphi but it is much of a work.(Abstraction with delphi strict typing makes everything hard for my exprerience level.) </p>
<p>Also ruby on rails activerecord-like implementation may be useful. </p>
<p>I could never be clear about trashing dbaware components or not.</p>
<p>I tried to implement some design patterns to separate layers (data access/connection), (business objects), (gui), but with no success. What I try to achieve is to mimic lego (I can use any database engine , any delphi database technology(bde, ado etc.. dbexpress is a must, others are optional). Also I may use xml (mybase or native), text files (csv-like, legacy parsing code) </p>
<p>I may need single tier, client/server and n-tier.</p>
<p>Also I may need some kind of web service implementation (the client side may be any technology apart from delphi executable , so I think generating xml, wsdl easily is necessary)</p>
<p>The data access layer is the most important part. It must be flexible because other frameworks will be developed upon it (user authentication, app configuration etc...).</p>
<ul>
<li>I may challenge to develop my own simple framework (I don't know what to follow: database adapter pattern, db connection factory, mappers, data access objects etc..)</li>
<li>I can use an existing one (instantobjects not applicable. not work with existing db schema). Some of the others I tried lack dbexpress support or I could not understand the configuration.</li>
</ul>
http://stackoverflow.com/questions/1142578/what-datatype-structure-to-store-file-list-info2What datatype/structure to store file list info?codervish2009-07-17T10:56:35Z2009-07-17T16:22:28Z
<p>I have an application that searches files on the computer (configurable path, type etc). Currently it adds information to a database as soon as a matching file is found. Rather than that I want to hold the information in memory for further manipulation before inserting to database. The list may contain a lot of items. I consider performance as important factor. I may need iterating thru the items, so a structure that can be coded easily is another key issue. and how can I achieve php style associative arrays for this job?</p>
http://stackoverflow.com/questions/1115421/how-to-increase-the-startup-speed-of-the-delphi-app/1142629#11426291Answer by codervish for How to increase the startup speed of the delphi app?codervish2009-07-17T11:07:23Z2009-07-17T11:07:23Z<ul>
<li>First thing to do is to clear auto
created forms list (look for Project
Options). Create forms on the fly
when needed, especially if the
application uses database connection
(datamodule) or forms that include
heavy use of controls.</li>
<li>Consider using form inheritance also
to decrease exe size (resource usage is mimized)</li>
<li>Decrease number of forms and merge similar or related functionality into single form</li>
</ul>
http://stackoverflow.com/questions/1142254/get-window-to-refresh-etc-without-calling-application-processmessages/1142435#11424351Answer by codervish for Get window to refresh (etc) without calling Application.ProcessMessages?codervish2009-07-17T10:11:24Z2009-07-17T10:11:24Z<p>The technique you're looking for is called <strong>threading</strong>. It is a diffucult technique in programming. The code should be handled with care, because it is harder to debug. Whether you go with threading or not, you should definitely disable the controls that users should <strong>not</strong> <em>mess with</em> (I mean the controls that can effect the ongoing process). You should consider using <strong>actions</strong> to enable/disable buttons etc...</p>
http://stackoverflow.com/questions/1040967/does-microsoft-expressions-web-support-web-application-projects/1073229#10732292Answer by codervish for Does Microsoft Expressions Web support Web Application Projects?codervish2009-07-02T08:48:45Z2009-07-02T08:48:45Z<p>You cannot develop Asp.NET or PHP applications with Expression Web. You can only use it to edit code files as text. This tool is a continuation of famous old Frontpage tool. It's much of a visual designer for html/css pages and templates</p>
http://stackoverflow.com/questions/721852/developer-tools-to-directly-access-databases/1073208#10732080Answer by codervish for Developer tools to directly access databasescodervish2009-07-02T08:43:54Z2009-07-02T08:43:54Z<p><a href="http://www.aquafold.com/" rel="nofollow">Aqua Data Studio</a> and <a href="http://www.embarcadero.com/products/rapid%5Fsql/index.php" rel="nofollow">RapidSQL</a> are two great tools/IDEs for sql development. You can connect almost any database engine and they include some vendor specific features for say Oracle etc..</p>
<p>Also since you use Eclipse IDE, you may consider Eclipse Data Tools Platform or QuantumDB plugin.</p>
http://stackoverflow.com/questions/1023984/how-do-you-skin-delphi-components-using-graphic-files0How do you skin Delphi components using graphic files?codervish2009-06-21T14:08:18Z2009-06-25T05:07:01Z
<p>Just like using CSS for Web applications, can we use graphics from clip art to skin buttons, edits, and form components without dealing with <code>TCanvas</code> or developing new components? Are there any <strong>fully free</strong> libraries to work with existing components? (<strong>No</strong> 3rd-party TSkinnedEdit etc.)</p>
http://stackoverflow.com/questions/1013213/how-to-insert-records-in-master-detail-relationship/1023883#10238830Answer by codervish for How to insert records in master/detail relationshipcodervish2009-06-21T13:23:48Z2009-06-21T13:23:48Z<p>First of all the idea of autoincrement and setting ID's by code clash in my opinion. The clear path to go is to generate the key yourself in the code. Especially with multi user apps that require master/detail inserts it is hard to impossible to get the right key inserted for the detail.</p>
<p>So generate a ID by code. When designing the table, set the ID field to primary key but no auto increment. If I'm not mistaken Append is used for the operation.</p>
<p>Also you seem to iterate while the visual controls are enabled? (Item.Activated) . But the operation is a batch process by nature. For GUI performance you should consider, disabling db controls that are connected and then execute the operation. Being in the master/detail scope, this may be the issue that two other cursors not iterating as expected.</p>
http://stackoverflow.com/questions/1017791/where-to-start-oop-in-delphi-mainly-focusing-on-database-development6Where to start OOP in Delphi mainly focusing on database development?codervish2009-06-19T12:47:44Z2009-06-20T00:59:38Z
<p>I want to isolate database code from GUI design. For a reasonable time I've been reading/searching/skimming on topics like mgm/mvp/mvc/persistence/objects etc.
I really have difficulty in designing a reusable object hierarchy/framework. Delphi is a great tool for RAD but when you want to work things out in a different way the documentation seems ineffective. I want to develop some king of persistence for data access and wiring data into an object/object list easily. And to integrate data display in a versatile manner (using existing components dbaware or not, create export/import routines for multiple formats). Where sould I start? Do you know any tutorials with code?
For example mastapp demo included in Delphi installation is a great source for RAD-way as a startup. I need the equivalent in OOP :) with comments & tutorial</p>
http://stackoverflow.com/questions/956368/dynamic-gui-creation-using-configuration-files7Dynamic GUI creation using configuration filescodervish2009-06-05T15:07:05Z2009-06-20T00:39:24Z
<p>Is is possible to create GUI for a Delphi application using an configuration pattern from an xml etc... file. Any frameworks exist for such an operation. It is easy with scripting like languages but can we simulate this behaviour in Delphi? </p>
<p>I need free library.</p>
http://stackoverflow.com/questions/1005373/creating-components-at-runtime-delphi/1017975#10179750Answer by codervish for Creating components at runtime - Delphicodervish2009-06-19T13:32:18Z2009-06-19T13:32:18Z<p>During a research on "creating a delphi form using xml based template", I find something useful pointing out RTTI and using open tools api (ToolsApi.pas I think). Have a look at the interfaces in the unit.</p>
http://stackoverflow.com/questions/194544/delphi-for-php/986129#9861290Answer by codervish for Delphi for PHPcodervish2009-06-12T11:12:50Z2009-06-12T11:12:50Z<p>If you're a long time Delphi developer who is going for the web hype then it is the tool. It enables you fast dive to web programming. It hides many glitches about web development/design. But IDE performance is weak and the html output generated when your VCL for WEB applications run is hideous. Application runtime performance seems to be weak (but that is almost a common issue in all of the VCLized php frameworks anyway). Debugging is good. The integration of html/php/smarty templates/debugging/database/interface design makes it the only reasonable RAD ide for php. Of course it can help if you work OOP way (without using too much of the VCL components). I used it for the trial period. If I have a web project, I'll go buy it. Main disadvantage is lack of documentation and weak community.</p>
http://stackoverflow.com/questions/958927/delphi-7-keeps-using-old-outdated-form/979603#9796030Answer by codervish for Delphi 7 keeps using old outdated formcodervish2009-06-11T06:17:37Z2009-06-11T06:17:37Z<p>Although the form/unit is not included in the project file (dpr), it is still referenced by some other unit. So the compiler links the res into the application. Look for the unit name you want to remove in other units' uses clauses.</p>
http://stackoverflow.com/questions/955588/what-are-the-best-practices-for-database-development-with-delphi7What are the best practices for database development with Delphi?codervish2009-06-05T12:22:18Z2009-06-07T00:03:28Z
<ol>
<li>How can I use the RAD way productively (reusing code). Any
samples, existing libraries, basic
crud generators?</li>
<li>How can I design the OOP way? Which
design patterns to use for
connection, abstracting different
engines/db access layers
(bde-dbexpress-ado), basic CRUD
operations.</li>
</ol>
http://stackoverflow.com/questions/954934/how-can-i-create-objects-with-reference-using-instantobjects-framework-programmat0How can I create objects with reference using instantobjects framework programmaticaly in Delphi codecodervish2009-06-05T09:04:41Z2009-06-05T17:46:51Z
<p>I am a experimenting with instantobjects. I have two simple classes tband and tcountry both are defined as stored. tband has a properts named tcountry referencing the tcountry class/table. (country is the lookup table). When creating a new band I want the user to be able to select the country in the form from a list/combo and then save the band object. I tried something like:</p>
<pre><code>Band.Create(nil);
Country.Create(nil);
Country := CountrySelector.CurrentObject as TCountry; // here I get an exception
Band.Country := Country;
Band.Store;
</code></pre>
<p>CountryConnector is an TInstantConnector. It has a query "select * from TCountry" and displays values in a DbComboBox.</p>
http://stackoverflow.com/questions/955097/list-of-free-dbexpress-drivers-for-delphi2List of free dbexpress drivers for Delphicodervish2009-06-05T09:52:02Z2009-06-05T17:26:54Z
<p>Anyone knows/has a comprehensive list of free open source dbexpress drivers? </p>
http://stackoverflow.com/questions/840353/delphi-tsqlquery-leaving-a-proccess-on-mysql-even-after-been-freed/956066#9560660Answer by codervish for Delphi - TSQLQuery leaving a proccess on MySQL even after been freedcodervish2009-06-05T14:10:18Z2009-06-05T16:54:52Z<pre><code>ConnectionName := 'MySQLConnection';
DriverName := 'MySQL';
GetDriverFunc := 'getSQLDriverMYSQL';
**KeepConnection := TRUE;** // <---------- this setting is persisting the database connection, change to false if you want to disconnect
LibraryName := 'dbxmys30.dll';
LoadParamsOnConnect := False ;
LoginPrompt := FALSE;
Name := 'mySQLConnection';
VendorLib := 'LIBMYSQL.DLL';
TableScope := [tsTable,tsView];
</code></pre>
<p>It is not a good practice to disconnect reconnect repetitively, if your application is to query things more than once. The preferred way is to create a connection when it is first needed, and keep it open until it is no longer needed.</p>
<p>The <em>command</em>---><em>sleep</em> indicates that you are connected to the database but no query (<strong>TSQLQuery</strong> etc.) is running currently. In fact if you're not creating a high load operation most likely you'll never see anything else but '<em>sleep</em>'.</p>
http://stackoverflow.com/questions/615073/storing-sql-field-names-and-general-sql-usage-with-delphi/955780#9557800Answer by codervish for Storing SQL field names and general SQL usage with Delphicodervish2009-06-05T13:12:16Z2009-06-05T13:12:16Z<p>Take a loot at <a href="http://www.drbob42.com/examines/examin17.htm" rel="nofollow">Analysing DataSets (in Delphi and Kylix)</a></p>
<p>The code is a good example of manipulating table metadata. You can get field names and then write a code-generator that can create a base unit/ or the interface part of it.</p>
http://stackoverflow.com/questions/400114/is-it-possible-to-create-databases-programmatically-using-dbx/955631#955631-2Answer by codervish for Is it possible to create databases programmatically using DBX?codervish2009-06-05T12:44:16Z2009-06-05T12:44:16Z<p>With Delphi 2007/2009 comes DBX4. You may use the low level structures there to create database programmatically. Look in <code>dbxcommons.pas</code> </p>
http://stackoverflow.com/questions/944279/how-to-fix-delphi-2009-data-explorer0How to fix Delphi 2009 Data Explorer?codervish2009-06-03T11:46:05Z2009-06-04T02:56:53Z
<p>Probably I have messed several delphi versions installations by installing / uninstalling several times (I think I did not follow the order of release). I want to try out Developer Studio 2009 but after installation (althought everything other seems to work fine), when I click The Data Explorer tab nothing is shown on the list. This issue is possibly caused by multiple dbexpress configurations in the registry, but I could not fix it. I get the notion that the uninstaller is of the un-unistaller kind. Registry sucks anyway. </p>
<p>NOTE: OPSYS reinstallation is not an acceptable solution, obviously. </p>
http://stackoverflow.com/questions/139844/can-delphi-2009-be-installed-on-the-same-machine-as-delphi-2006-or-delphi-2007/944316#9443160Answer by codervish for Can Delphi 2009 be installed on the same machine as Delphi 2006 or Delphi 2007?codervish2009-06-03T11:55:00Z2009-06-03T11:55:00Z<p>Moving along with the order of release is a must. Install older first. Uninstalling may get tricky though.
<a href="http://stackoverflow.com/questions/944279/how-to-fix-delphi-2009-data-explorer">How to fix Delphi 2009 data explorer?</a></p>
http://stackoverflow.com/questions/943730/database-design-defining-a-relation-between-entities-in-database/943885#9438850Answer by codervish for Database Design: Defining a relation between entities in database.codervish2009-06-03T09:48:23Z2009-06-03T09:48:23Z<p>Whether or not you have <strong>G</strong>UID the second option is easier to code and design. When you select data by joining two tables you'll only need the identifier columns indexed.
The other way you need composite indexes for just this join.</p>
<p>Having unique primary keys in tables in a enterprise corporate system is a valuable practice in my experience. (from both dba and developer perspective)</p>
<p>Designing database for performance is a complicated issue involving many criteria. Rather then go after the theory, if you have Oracle at hand play with your two approaches in practice and use explain plan tools. I mean create tables with your mentioned approaches, play with indexes and use explain plan. If I am not mistaken Oracle even gives you an idea about query performance by projection (i.e. by letting you estimate number of rows in tables). I'm not sure about Express Edition version has this support</p>
http://stackoverflow.com/questions/1139087/possible-to-block-form-fillers/1139191#1139191Comment by on Possible to block form fillers?2009-07-17T10:29:40Z2009-07-17T10:29:40ZMost probably form filler catches fields with maskedit property. So the 'fake' label method does its job.
Also you can add a captcha field. One more field to fill can be annoying but for security it's a rose with thorns. (The password technique is also another field-to-fill anyway :)http://stackoverflow.com/questions/1040967/does-microsoft-expressions-web-support-web-application-projects/1073229#1073229Comment by on Does Microsoft Expressions Web support Web Application Projects?2009-07-03T10:18:37Z2009-07-03T10:18:37ZIn fact a single tool for all techonologies do not exist at all. No single IDE for asp.NET, php, jsp etc. If you are interested in Win platform web development Visual Studio is a good solution. Also you should consider Rad Studio(Delphi).http://stackoverflow.com/questions/1017791/where-to-start-oop-in-delphi-mainly-focusing-on-database-development/1019041#1019041Comment by on Where to start OOP in Delphi mainly focusing on database development?2009-06-21T11:44:43Z2009-06-21T11:44:43ZThere is some other called infra framework. It is rather much strange, no download link is supplied. Only svn access. I think it is also in Portuguesehttp://stackoverflow.com/questions/1017791/where-to-start-oop-in-delphi-mainly-focusing-on-database-development/1018301#1018301Comment by on Where to start OOP in Delphi mainly focusing on database development?2009-06-21T11:38:43Z2009-06-21T11:38:43ZActually I've been the most successful in my experiments with Instant Objects, apart from a few annoyances. However, during the gui - model interaction and seperation I stopped to consider other alternatives (even develeoping my own :)). (Not being able to clearify going dbaware or non-dbaware was the cause). However, it worked like a charm in the persistence part for me. You just call Store() and that's it. No sql, no field list, field names, no typecasting etc, no datetime type mismatch...http://stackoverflow.com/questions/1017791/where-to-start-oop-in-delphi-mainly-focusing-on-database-development/1018869#1018869Comment by on Where to start OOP in Delphi mainly focusing on database development?2009-06-21T11:31:18Z2009-06-21T11:31:18ZDespatcher thank you for your long explanation, also thanks to birger. The three layer idea fits into my mind somehow. Just websearching I could not make out the difference between the persistence and model layer. People mentioning 3 letter acronyms get you lost. Rather than your objective, you start going after the new terms (opf/orm/mgm etc..) Maybe it is much simpler. You write a connection class, instantiate it at app start or login etc. You write a sql class, instantiate it according to user action and on. Make these highly reusable and decouple from db access technology. A good start ? http://stackoverflow.com/questions/1017791/where-to-start-oop-in-delphi-mainly-focusing-on-database-development/1019041#1019041Comment by on Where to start OOP in Delphi mainly focusing on database development?2009-06-21T11:06:59Z2009-06-21T11:06:59ZI do aggree with Yogi Yang. It's much easier to create from scratch against getting to understand a code w/o documentation (lack of English I mean)http://stackoverflow.com/questions/978040/how-to-force-delphi-compiler-to-display-all-hints-and-warnings/978055#978055Comment by on How to force Delphi compiler to display all hints and warnings2009-06-11T05:51:24Z2009-06-11T05:51:24ZDeleting the dcu's should get all the units to be recompiled by the linker. This is rather strange. For my experience the IDE tracks the changes in code and compiles only the changed units. If a unit has no compiled file under project search the path(s) it should be compiled. So when you delete all the DCUs you're rebuilding all.http://stackoverflow.com/questions/954934/how-can-i-create-objects-with-reference-using-instantobjects-framework-programmat/957182#957182Comment by on How can I create objects with reference using instantobjects framework programmaticaly in Delphi code2009-06-11T05:43:02Z2009-06-11T05:43:02Z20+K is an eccentric amount. My main approach is not to use Delphi's Object Inspector too much. However, since Country actually refers to a lookup table with few records I use it this way. I'm still experimenting with IO, and I managed to progress as much as I expected. Using "stored" I have the table design I desire. And the ease of persistence gets 10 out of 10. Now I'll try to design my own validation on top of IO. I'll try using datamodules and form inheritance. Time to move onward :)http://stackoverflow.com/questions/955097/list-of-free-dbexpress-drivers-for-delphi/955510#955510Comment by on List of free dbexpress drivers for Delphi2009-06-11T05:29:54Z2009-06-11T05:29:54ZI'll have a try but ODBC seems rather ancient to me :). I am not sure it works for Linux part.http://stackoverflow.com/questions/926017/what-patterns-to-use-to-build-layers-for-delphi-win-32-application/926630#926630Comment by on What patterns to use to build layers for delphi win 32 application2009-06-11T05:16:38Z2009-06-11T05:16:38ZAfter a few days battle I seem to be able to progress with IO. Finally I could succesfully store an object with a reference to another object (simulating my lookup table), I believe the data access/persistance mechanism is now standardised. Apart from the field "class" being added to each table, IO meets my requirements well. I designed a few screen with my old tarzan-ish style in no time. Now I'd continue on the MVC and likes path to have more reusability and ease of coding.http://stackoverflow.com/questions/956368/dynamic-gui-creation-using-configuration-files/957593#957593Comment by on Dynamic GUI creation using configuration files2009-06-11T05:05:39Z2009-06-11T05:05:39ZXI seems to meet my requirements completely but one. It's not free. I should have mentioned that in the question at the first place.http://stackoverflow.com/questions/615073/storing-sql-field-names-and-general-sql-usage-with-delphiComment by on Storing SQL field names and general SQL usage with Delphi2009-06-05T13:14:24Z2009-06-05T13:14:24ZSearch for the article Analysing DataSets (in Delphi and Kylix). Use the code there to write a generator sort of application.
http://stackoverflow.com/questions/615073/storing-sql-field-names-and-general-sql-usage-with-delphi/615097#615097Comment by on Storing SQL field names and general SQL usage with Delphi2009-06-05T13:13:20Z2009-06-05T13:13:20ZSearch for the article Analysing DataSets (in Delphi and Kylix)
http://stackoverflow.com/questions/954934/how-can-i-create-objects-with-reference-using-instantobjects-framework-programmat/955414#955414Comment by on How can I create objects with reference using instantobjects framework programmaticaly in Delphi code2009-06-05T12:02:44Z2009-06-05T12:02:44ZCountrySelector is actually active. Connected in the RAD way and populating items in the DBComboBox thru DataSourcehttp://stackoverflow.com/questions/926017/what-patterns-to-use-to-build-layers-for-delphi-win-32-application/926630#926630Comment by on What patterns to use to build layers for delphi win 32 application2009-06-05T11:03:06Z2009-06-05T11:03:06ZI tried instantobject again. The video tutorial was somehow misleading for me when I first tried it. This time I was more successful as a start. However, I have difficulty in the concepts of stored-embedded objects and using part(s)-reference(s) programmatically. Maybe I am not modeling the right way (instantobjects way)