active questions tagged delphi+database - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T08:55:24Z http://stackoverflow.com/feeds/tag/delphi+database http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1865842/wrong-result-after-refresh-pressed-on-dbnavigator-delphi 0 Wrong Result after Refresh pressed on DbNavigator Delphi Tofig Hasanov 2009-12-08T09:42:06Z 2009-12-10T17:52:37Z <p>I have faced a very strange situation here. I am accessing database (MDB) through JET. I use DBGrid and DBNavigator to allow user access it. Dataset is created using TADOQuery component, with the following query:</p> <pre><code>SELECT *, (DateDiff ('y',[Birth Date], Now())) AS [Age] FROM TableName </code></pre> <p>It works fine. But whenever I press Refresh button on DBNavigator the result of this calculated field becomes wrong. For example, if normally I have 7 shown on Age column, after I press Refresh it becomes 40149, 7 changes to 40149, 6 changes to 40150, 0 to 40156 etc. In order to view correct result I need to reopen query again.</p> <p>Anybody can help?</p> http://stackoverflow.com/questions/1851883/how-to-find-list-of-all-tables-in-access-database-matching-certaing-format-in-del 0 How to find list of all tables in Access Database matching certaing format in Delphi Tofig Hasanov 2009-12-05T10:56:12Z 2009-12-07T17:38:04Z <p>I need to compute a list of table names in a given database (MDB format), which have certain format (for example which containt DateTime field "Date Applied"). How can I do it?</p> <p>Note: I am using Delphi 7, ADO components, Microsoft JET 4.0 to connect to MDB type Database.</p> http://stackoverflow.com/questions/1858673/connect-with-a-database-over-the-lan 0 Connect with a database over the LAN Leo 2009-12-07T08:44:02Z 2009-12-07T09:35:49Z <p>How to connect with a database over the LAN?</p> <p>I have only the name of the computer.</p> http://stackoverflow.com/questions/1851385/local-connection-with-database 0 Local connection with Database Leo 2009-12-05T06:47:39Z 2009-12-06T03:16:09Z <p>How do I connect my local client application with the database on the server?</p> <p>I am using Delphi and MySQL.</p> http://stackoverflow.com/questions/1835161/looking-for-a-local-database-for-d2009 5 Looking for a local database for D2009+ Mason Wheeler 2009-12-02T19:15:45Z 2009-12-04T00:08:39Z <p>I'm trying to update a legacy app that does all its data storage in a hacked-together system of BDE Paradox files. The program works pretty well, under certain narrow conditions, but it has serious performance issues.</p> <p>I'd like to try and improve things by updating to a better database system. What I need is a local database, preferably one where I can store the whole thing in one file instead of the current "one or more files per table" system. It has to support foreign-key relationships and table indexing, and it has to be able to return a result quickly from a query of a table with hundreds of thousands of elements.</p> <p>This last one is important. The current system is indexed, but that doesn't seem to matter much. All the queries seem to run in O(N) time where N is the total size of the table, and it gets horrifically slow when the tables start to get large. I'm not really sure why, but that has to go away.</p> <p>And it has to work under D2009 and later. Can anyone provide some recommendations?</p> http://stackoverflow.com/questions/1804464/database-versioning-in-installed-applications-using-delphi 8 Database versioning in installed applications using Delphi. Larry Lustig 2009-11-26T15:52:22Z 2009-11-30T17:29:08Z <p>I'm working on a number of Delphi applications that will need to upgrade their own database structures in the field when new versions are released and when users choose to install additional modules. The applications are using a variety of embedded databases (DBISAM and Jet currently, but this may change).</p> <p>In the past I've done this with DBISAM using the user version numbers than can be stored with each table. I shipped an extra, empty set of database files and, at start-up, compared the version numbers of each table using the FieldDefs to update the installed table if necessary. While this worked I found it clumsy to have to ship a spare copy of the database and newer versions of DBISAM have changed the table restructuring methodology so that I'll need to rewrite this anyway.</p> <p>I can see two ways of implementing this: storing a version number with the database and using DDL scripts to get from older versions to newer versions or storing a reference version of the database structure inside the application, comparing the reference to the database on start-up, and having the application generate DDL commands to upgrade the database.</p> <p>I think that I'll probably have to implement parts of both. I won't want the application to diff the database against the reference structure every time the application starts (too slow), so I'll need a database structure version number to detect whether the user is using an outdated structure. However, I'm not sure I can trust pre-written scripts to do the structural upgrade when the database could have been partially updated in the past or when the user may have themselves changed the database structure, so I'm inclined to use a reference diff for the actual update.</p> <p>Researching the question I've found a couple of database versioning tools but they all seem targeted towards SQL Server and are implemented outside the actual application. I'm looking for a process that would be tightly integrated into my application and that could be adapted to different database requirements (I know that I'll have to write adapters, custom descendant classes, or event code to handle differences in DDL for various databases, that doesn't bother me).</p> <p>Does anyone know of anything off the shelf that does this or failing that, does anyone have any thoughts on:</p> <ol> <li><p>The best way to store a reference version of a generic relational database structure inside an application.</p></li> <li><p>The best way to diff the reference against the actual database.</p></li> <li><p>The best way to generate DDL to update the database.</p></li> </ol> http://stackoverflow.com/questions/1799634/how-should-i-implement-a-huge-but-simple-indexed-stringlist-in-delphi 1 How Should I Implement a Huge but Simple Indexed StringList in Delphi? lkessler 2009-11-25T20:07:17Z 2009-11-27T14:56:42Z <p>I am using Delphi 2009. I have a very simple data structure, with 2 fields:</p> <ol> <li>A string that is the key field I need to retrieve by and is usually 4 to 15 characters in length.</li> <li>A string that is the data field that may be any size, from 1 character up to say 10,000 characters.</li> </ol> <p>The difficulty is that I may have several million of these records, so they may total as much or more than 10 GB in size. Obviously, I'm looking for an on-disk solution rather than an in-memory solution.</p> <p>My program needs to randomly retrieve these records, based on the key field. That's that part that needs to be made as efficient as possible.</p> <p>Should I use a database for such a simple structure, and if so, which database would be best to handle this and be simplest to implement?</p> <p>Alternatively, is there a simple on-disk data structure not requiring a full-blown database that would work just as well?</p> <p><hr></p> <p>Well, all I needed was the one answer to kick me back into reality. I was looking for something simpler than even a simple database. But when the no-duh answer is to use a database, then I realize I've already answered this question with my own answer to another question: <a href="http://stackoverflow.com/questions/445357/best-database-for-small-applications-and-tools/445565">Best database for small applications and tools</a>.</p> <p>My answer was <a href="http://www.yunqa.de/delphi/doku.php/products/sqlite3/" rel="nofollow">DISQLite3</a> for <a href="http://stackoverflow.com/questions/445357/best-database-for-small-applications-and-tools/445565#445565">the reasons I specified there</a>. And that's what I'll probably with for my implementation.</p> <p><hr></p> <p>A few more good answers with some possibilities. That's great. I'll be able to try a few different methods to see what works best.</p> <p><hr></p> <p>More contemplation, and I have had to change the accepted answer to the GpStructuredStorage solution.</p> <p>In my case, a million records totalling several Gigabytes will put a strain on a database structure. Specifically, the B* tree that is used to store the index in most databases is fast, but will slow down for some operations such as reindexing a million values. </p> <p>The only thing you'll find faster than B* for an index is a hash table. And that is precisely what is provided in gabr's suggested addition to the GpStructuredStorage solution. I think it's quite elegant the way he segmented the hash value to give a 4 level directory structure.</p> <p>The key reason why I can go to a hash solution is that I only need random access by the keys. I do not need to sort by the keys. If sorting was needed, then the gains of the speed of the hash table would be lost and the database system would be a no-brain winner.</p> <p>When I get down to implementing this, I should do a comparison of this technique versus a database. Maybe I'll compare with both Firebird and SQLite which would both be worthy opponents.</p> http://stackoverflow.com/questions/1734717/is-it-possible-and-safe-to-have-multiple-tdatasources-reffering-one-tdataset-desc 0 Is it possible and safe to have multiple TDataSources reffering one TDataSet descendant component ? Gobol 2009-11-14T16:24:35Z 2009-11-15T11:33:17Z <p>Hi there!</p> <p>I'm designing database app with ZeosLib. On one form I have some Lookups that should refer to the same dataset. Is it safe to create one TDataSet descendant and then connect few TDataSources to it ?</p> http://stackoverflow.com/questions/1661778/is-it-possible-to-use-the-adoquery-result-as-a-string 0 Is it possible to use the adoquery result as a string? Makaku00 2009-11-02T14:58:45Z 2009-11-04T10:37:25Z <p>Im using the ado components to connect to an ms sql database. I know how to show the result of a query in db grid. But i want to store the results as string in an array for example. Is this possible or is there another way to use the query results?</p> http://stackoverflow.com/questions/1619887/what-is-the-best-database-for-delphi-desktop-applications-that-supports-stored-pr 3 What Is The Best Database For Delphi Desktop Applications That Supports Stored Procedures? Cape Cod Gunny 2009-10-25T03:11:30Z 2009-10-26T22:29:36Z <p>I started with Turbo Pascal 3, went to TP5, Bought TP6 called Borland the next day and downgraded to TP5.5. Bought Delphi 3, and now have Delphi 5 Enterprise. I sort of lost interest in writing code about 4-5 years ago for two reasons;</p> <ol> <li>Spent all day writing ASP &amp; SQL for someone else.</li> <li>PC Techniques magazine went away.</li> </ol> <p>I've got a few programs in the shareware market that are solid performers but are in need of serious updating. I love Delphi or did when it was Borland (before Borland bought DBase and all the other crap), I'd like to salvage as much of my D5E code as possible but I doubt I can. I plan on upgrading to Delphi 2010.</p> <p>My next software release needs to interact with a database. I'm very proficient with MS Sql and like to put all of the database code in stored procedures. </p> <p>What is the best database choice that interacts well with Delphi, allows stored procedures and is so easy to deploy that even the Geico gecko could deploy it?</p> <h3>10/25/2009 18:53 PM EST<br> Re-Opened After Reading Install Docs for Delphi 2010</h3> <p><br> I downloaded a trial version of Delphi 2010 and unzipped the install. I've been reading the install docs included in the package. I started with the install.htm inside the zip package.</p> <p>install.htm wisely tells you to see the following two articles:</p> <ol> <li>Installation Notes: <a href="http://edn.embarcadero.com/article/39754" rel="nofollow">http://edn.embarcadero.com/article/39754</a></li> <li>Release Notes: <a href="http://edn.embarcadero.com/article/39758" rel="nofollow">http://edn.embarcadero.com/article/39758</a></li> </ol> <p>the release notes state the following...<br><br> <b><i>MSSQL driver requires the installation of the SQL Native Client. SQL Native Client 2008 is required for dbxmss.dll. SQL Native Client 2005 is required for dbxmss9.dll</i></b><br><br> I checked my machine to see if SQL Native Client is installed. Nope. I wasn't done reading the docs so I made a note to install SQL Native Client.<br><br> I googled <b>dbxmss.dll</b> and <b>dbxmss9.dll</b> and found a very intersting thread on the Embarcadero forums. <a href="https://forums.embarcadero.com/thread.jspa?threadID=24664" rel="nofollow">read thread here</a>.<br><br> After reading this thread and some careful thought I don't think I will be using Microsoft SQL Express. I can't rely on my customers having the right drivers installed. So, I'm back to looking for a different solution. <br><br> If I'm selling a $40 product to the general masses I need to have a bulletproof solution that doesn't require my brand new customer to update their machine before my software will work.</p> http://stackoverflow.com/questions/1189892/recommendation-needed-for-good-database-for-delphi-desktop-app 8 Recommendation needed for good database for Delphi desktop app TheSteven 2009-07-27T18:43:32Z 2009-10-24T21:05:01Z <p>I am creating a desktop application written in Delphi and I am looking for a database for my application.</p> <p>I'm a bit overwhelmed by the number of available options. I'd really appreciate some recommendations and insights from other developers based on their experiences.</p> <h1>Critical factors</h1> <ul> <li><p>Low or no buyin cost. </p></li> <li><p>No distribution fees.</p></li> <li><p>Easily handle upto 35,000 records with no problems, ideally up to 100k.</p></li> <li><p>Supports multiple tables (in this case up to 10)</p></li> <li><p>Blob support (binary objects, images, etc.)</p></li> <li><p>Can be distributed as part of the application install set. I.E. User does not have to someone else's website to download database installer.</p></li> <li><p>Can be installed and configured by install set with minimal user interaction. My target userbase is not technically inclined. </p></li> <li><p>Reasonably fast performance. </p></li> <li><p>Support for standard SQL statements (or something reasonably close) </p></li> <li><p>Support for multiple indexes </p></li> </ul> <h1>Less critical</h1> <ul> <li>Size of database installation</li> <li>Size of database once installed on user's system.</li> </ul> <h1>Not critical, but nice if available</h1> <ul> <li>Multi-user support</li> <li>Encryption </li> <li>Scalability</li> </ul> <p>Thanks... </p> http://stackoverflow.com/questions/1606992/problems-opening-access-database-from-delphi-7 0 Problems opening Access Database from Delphi 7 Tofig Hasanov 2009-10-22T12:54:16Z 2009-10-24T07:12:41Z <p>I am developing Delphi 7 application, which is operating with Access Database (MDB format). It works fine on my PC, and some other PCs as well. But on some machines application gives error when trying to access database sometimes, saying something like "Unkown database format (mdb)". Additionally I noticed one thing: When you open that database in Ms Access using Office, it is opened in "read-only" mode for some reason. Can anybody help? What could be the reason for the problem?</p> http://stackoverflow.com/questions/445357/best-database-for-small-applications-and-tools 8 Best database for small applications and tools Jlouro 2009-01-15T01:44:07Z 2009-10-20T22:03:34Z <p>What is the best database for small applications and tools? I used paradox, moved to SQLserver, now I use blackfish. But is there other small and free databases for small applications and tools. Thanks</p> http://stackoverflow.com/questions/1055031/need-an-embedded-in-memory-database 3 Need an embedded/In Memory Database Leo 2009-06-28T14:37:39Z 2009-10-20T11:38:56Z <p>Hi all,</p> <p>I need an embedded/In Memory Database which support <strong>multithread</strong> access.</p> <p>Thanks!</p> <p>Leo</p> http://stackoverflow.com/questions/1571321/how-can-i-work-with-chinese-characters-from-a-database 2 How can I work with Chinese characters from a database? James 2009-10-15T09:43:37Z 2009-10-16T14:58:15Z <p>I am facing problem capturing Chinese characters in a dataset.</p> <p>In Delphi 2010 I have tried two kinds of components:</p> <ol> <li>Delphi default</li> <li>Developer Express components</li> </ol> <p>As result, those components that do not link to the datasource are working fine, but those components <em>do</em> that link to the datasource have a problem. The Chinese characters have been converted into question marks, except in the TDBMemo. See the image below.</p> <p>The dataset is a client-dataset with two fields:</p> <ol> <li>Name - string</li> <li>Description - Memo</li> </ol> <p>What should I do in order to get it work?</p> <p><img src="http://img97.imageshack.us/img97/9445/d2010unicodetestsimplif.gif" alt="Reference Image" title="" /></p> <p>type</p> <p>TForm1 = class(TForm)</p> <pre><code>ClientDataSet1: TClientDataSet; ClientDataSet1Name: TStringField; ClientDataSet1Description: TMemoField; DataSource1: TDataSource; ClientDataSet2: TClientDataSet; ClientDataSet2Name: TStringField; ClientDataSet2Description: TMemoField; DataSource2: TDataSource; </code></pre> http://stackoverflow.com/questions/1555562/how-to-insert-data-dbgrid-to-tlistitem-with-delphi 0 how to insert data DBGrid to TlistItem with delphi? Tobassum Munir 2009-10-12T16:29:48Z 2009-10-12T18:53:45Z <p>hello all Friends..........</p> <pre><code>how to insert data Db Grid to TlistItem with Delphi? </code></pre> <p>thanks for help?????????</p> http://stackoverflow.com/questions/1254698/exchange-data-between-two-apps-across-pc-on-lan 6 Exchange Data between two apps across PC on LAN Yogi Yang 007 2009-08-10T12:51:59Z 2009-10-02T22:22:18Z <p>I have a need of implementing two apps that will exchange data with each other. Both apps will be running on separate PCs which are part of a LAN.</p> <p>How we can do this in Delphi? </p> <p>Is there any free component which will make it easy to exchange data between apps across PCs?</p> http://stackoverflow.com/questions/1476772/delphi-odbc-connection-dialog-component 2 Delphi ODBC Connection Dialog Component ? SamH 2009-09-25T11:27:04Z 2009-09-25T15:44:09Z <p>Hi,</p> <p>I am thinking about adding ODBC database connectivity to an application. </p> <p>The user will at runtime configure and select their database odbc connection.</p> <p>Are there any components that will give me the required series of dialogs ? </p> <p>Allowing the user to select the data source type, select drivers, browse already defined ODBC connections etc.</p> <p>Cheers Sam</p> http://stackoverflow.com/questions/872538/delphi-database-server 0 Delphi - Database Server Aldo 2009-05-16T14:33:38Z 2009-09-23T11:06:04Z <p>Hello everyone.</p> <p>Which of the Database servers would you people recommend for using in a moderate-to-large scale (will vary from customer to customer) application.</p> <p>I know MS SQL but since the app will be developed using delphi the .net framework is kind of annoying to deploy aswell. Also how realiable is Interbase.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1373836/how-to-transfer-data-from-one-database-to-another-database 1 How To Transfer data from one database to another Database? [closed] Tobassum Munir 2009-09-03T14:42:18Z 2009-09-03T19:47:28Z <p>Hello All Friends..........</p> <p>Transferring data from one database to another</p> http://stackoverflow.com/questions/1360145/delphi-using-bigints-from-a-database 2 Delphi: using BigInts from a database neves 2009-09-01T01:24:33Z 2009-09-03T05:36:58Z <p>I´m using Delphi 7 with devart dbExpress to connect to SQLServer. The problem is that when I add a bigInt field to a ClientQuery it comes as TFMTBCDField.</p> <p>And the TFMTBCDField don´t have a method to get the 64 bit value.</p> <p>I can use the Field.AsVariant or the StrToInt64(Field.AsString) to pick this 64 bits value.</p> <p>Is there a better way to pick/use this value?</p> http://stackoverflow.com/questions/1312920/i-have-a-problem-in-dll 0 I have a problem in dll? Tobassum Munir 2009-08-21T16:21:30Z 2009-08-22T22:39:56Z <p>hello all friends..........</p> <p>I create a form inside the Dll. But it compile is not successfully.Some Error below.</p> <p>" Access violation at address 004EB784 in module 'Project1dll.dll'.Read of address 00000048"</p> <p>Thanks..... </p> http://stackoverflow.com/questions/1305531/ado-or-dbx-using-delphi 4 ADO or DBX using Delphi Richard K 2009-08-20T11:28:11Z 2009-08-21T08:50:16Z <p>Which is better (and for what reasons) to use to connect to MS SQL, Oracle or Firebird from a Delphi Win32 application -- ADO or DBX (Database Express)?</p> <p>Both allow you to connect to the major databases. I like the way ADO does it all with a connection string change and the fact that ADO and the drivers are included with Windows so nothing extra to deploy (it seems, correct me if I'm wrong).</p> <p>DBX is also flexible and I can compile the drivers into my app, can I not? </p> <p>I really am keen to have a single source if possible, with the ability to vary databases depending on the customer's IT department/preferences.</p> <p>But which is easier to program, performs better, uses memory most efficiently? Any other things to differentiate them on? </p> <p>Thanks, Richard</p> http://stackoverflow.com/questions/1284745/communication-among-clients-in-delphi-2009 1 Communication among clients in Delphi 2009 Billiardo Aragorn 2009-08-16T16:50:46Z 2009-08-17T08:24:15Z <p>I wanna build a Win32 app of Client/Server (or 3-tier) type with follow features:</p> <ul> <li>When the "A" client does a modification (update,insert, etc) into a database, the rest of clients viewing the same record set can get almost "instantly" a fresh view of this data</li> <li>a client can be notified when a connection to database get lost</li> </ul> <p>could someone help me? Thanks in advance</p> <p>Pdta: My Database is MySQL 5.1</p> http://stackoverflow.com/questions/1276133/how-to-get-the-weight-for-a-stored-image-in-delphi-2009 0 How to get the weight for a stored image in Delphi 2009? Billiardo Aragorn 2009-08-14T05:05:40Z 2009-08-14T10:35:22Z <p>I have images stored in my database, when fetching these images I wish to know what the weight (20KB,90KB,etc.) per image is. How do I get this info? Thanks in advance.</p> http://stackoverflow.com/questions/1242161/delphi-how-to-get-the-value-of-an-output-parameter-of-a-stored-procedure 3 Delphi: How to get the value of an output parameter of a stored procedure? neves 2009-08-06T23:54:42Z 2009-08-07T02:16:25Z <p>I want to programatically create a SQLDataSet in Delphi and use it to execute a Stored Procedure and get the value of an output parameter. Looks easy but I can't make it work.</p> <p>Here is a dumb stored procedure in SQL Server:</p> <pre><code>CREATE PROCEDURE [dbo].getValue @x INT OUTPUT AS BEGIN SET @x = 10; END </code></pre> <p>Now here is one of the variations that I tried and didn't work:</p> <pre><code>proc := TSQLDataSet.Create(nil); proc.SQLConnection := DefaultConnection; proc.CommandText := 'getValue'; proc.Params.CreateParam(ftInteger, '@x', ptOutput); proc.Params.ParamByName('@x').Value := 0; proc.ExecSQL(False); value := newIdProc.Params.ParamByName('@x').AsInteger; </code></pre> <p>I thought it would be easy, but there are some <a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=4367" rel="nofollow">registred</a> <a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=57533" rel="nofollow">bugs</a> around this issue.</p> http://stackoverflow.com/questions/1221291/how-can-i-print-a-dbgrid 0 How can i print a dbgrid? unknown (google) 2009-08-03T08:52:43Z 2009-08-04T11:49:33Z <p>I'm working with delphi2009 and i really need to create a button that can print all my data in a dbgrid. I appreciate all the help i can get.</p> http://stackoverflow.com/questions/1139102/data-module-in-dll-with-delphi 0 Data Module in Dll with delphi? Tobassum Munir 2009-07-16T17:33:56Z 2009-07-16T19:51:11Z <p>Hello all friends..</p> <p>I am Tobassum Munir from Pakistan. I created a database program which has a problem. I used Borland Delphi 7.x</p> <p><strong>My Question is</strong></p> <p>"<strong><em>How to create a data module in Dll (Dynamic Link Library) With Delphi?</em></strong> </p> http://stackoverflow.com/questions/1013213/how-to-insert-records-in-master-detail-relationship 0 How to insert records in master/detail relationship croceldon 2009-06-18T15:05:27Z 2009-06-21T13:23:48Z <p>I have two tables:</p> <p>OutputPackages (master)</p> <pre><code>|PackageID| </code></pre> <p>OutputItems (detail)</p> <pre><code>|ItemID|PackageID| </code></pre> <p>OutputItems has an index called 'idxPackage' set on the PackageID column. ItemID is set to auto increment.</p> <p>Here's the code I'm using to insert masters/details into these tables:</p> <pre><code>//fill packages table for i := 1 to 10 do begin Package := TfPackage(dlgSummary.fcPackageForms.Forms[i]); if Package.PackageLoaded then begin with tblOutputPackages do begin Insert; FieldByName('PackageID').AsInteger := Package.ourNum; FieldByName('Description').AsString := Package.Title; FieldByName('Total').AsCurrency := Package.Total; Post; end; //fill items table for ii := 1 to 10 do begin Item := TfPackagedItemEdit(Package.fc.Forms[ii]); if Item.Activated then begin with tblOutputItems do begin Append; FieldByName('PackageID').AsInteger := Package.ourNum; FieldByName('Description').AsString := Item.Description; FieldByName('Comment').AsString := Item.Comment; FieldByName('Price').AsCurrency := Item.Price; Post; //this causes the primary key exception end; end; end; end; </code></pre> <p>This works fine as long as I don't mess with the MasterSource/MasterFields properties in the IDE. But once I set it, and run this code I get an error that says I've got a duplicate primary key 'ItemID'. </p> <p>I'm not sure what's going on - this is my first foray into master/detail, so something may be setup wrong. I'm using ComponentAce's Absolute Database for this project.</p> <p>How can I get this to insert properly?</p> <p><strong>Update</strong></p> <p>Ok, I removed the primary key restraint in my db, and I see that for some reason, the autoincrement feature of the OutputItems table isn't working like I expected. Here's how the OutputItems table looks after running the above code:</p> <pre><code>ItemID|PackageID| 1 |1 | 1 |1 | 2 |2 | 2 |2 | </code></pre> <p>I still don't see why all the ItemID values aren't unique.... Any ideas?</p> http://stackoverflow.com/questions/1017791/where-to-start-oop-in-delphi-mainly-focusing-on-database-development 6 Where to start OOP in Delphi mainly focusing on database development? codervish 2009-06-19T12:47:44Z 2009-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 &amp; tutorial</p>