User Renaud Bompuis - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T18:40:48Z http://stackoverflow.com/feeds/user/3811 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/979269/inserting-null-in-an-nvarchar-fails-in-msaccess 1 Inserting NULL in an nvarchar fails in MSAccess Renaud Bompuis 2009-06-11T04:07:12Z 2009-11-09T21:38:37Z <p>I'm experiencing something a bit strange.</p> <p>I have a table on SQL Server 2008, say <code>StockEvent</code> that contains a <code>Description</code> field defined as <code>nVarchar(MAX)</code>.<br /> The field is set to be Nullable, has no default value and no index on it.</p> <p>That table is linked into an Access 2007 application, but if I explicitly insert a <code>NULL</code> into the field, I'm systematically getting:</p> <pre><code>Run-time Error '3155' ODBC--insert on a linked table 'StockEvent' failed. </code></pre> <p>So the following bits of code in Access both reproduce the error:</p> <pre><code>Public Sub testinsertDAO() Dim db As DAO.Database Dim rs As DAO.Recordset Set db = CurrentDb Set rs = db.OpenRecordset("StockEvent", _ dbOpenDynaset, _ dbSeeChanges + dbFailOnError) rs.AddNew rs!Description = Null rs.Update rs.Close Set rs = Nothing Set db = Nothing End Sub Public Sub testinsertSQL() Dim db As DAO.Database Set db = CurrentDb db.Execute "INSERT INTO StockEvent (Description) VALUES (NULL);", _ dbSeeChanges Set db = Nothing End Sub </code></pre> <p>However, if I do the same thing from the <em>SQL Server Management Studio</em>, I get no error and the record is correctly inserted:</p> <pre><code>INSERT INTO StockEvent (Description) VALUES (NULL); </code></pre> <p>It doesn't appear to be machine-specific: I tried on 3 different SQL Server installations and 2 different PCs and the results are consistent.<br /> I initially though that the problem may be in my Access application somewhere, but I isolated the code above into its own Access database, with that unique table linked to it and the results are consistent.</p> <p>So, is there some known issue with Access, or ODBC and inserting <code>NULL</code> values to <code>nvarchar</code> fields?</p> <p><strong>Update.</strong><br /> Thanks for the answers so far.<br /> Still no luck understanding why though ;-(</p> <p>I tried with an even smaller set of assumptions: I created a new database in SQL Server with a single table <code>StockEvent</code> defined as such:</p> <pre><code>SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[StockEvent]( [ID] [int] IDENTITY(1,1) NOT NULL, [Description] [nvarchar](max) NULL ) ON [PRIMARY] GO </code></pre> <p>Then linked that table though ODBC into the test Access 2007 application.<br /> That application contains no forms, nothing except the exact 2 subroutines above.</p> <ul> <li>If I click on the linked table, I can edit data and add new records in datasheet mode.<br /> Works fine.</li> <li>If I try any of the 2 subs to insert a record, they fail with the 3155 error message.<br /> (The table is closed and not referenced anywhere else and the edit datasheet is closed.)</li> <li>If I try the SQL insert query in SQL Server Management Studio, it works fine.</li> </ul> <p><strong>Now for the interesting bit:</strong></p> <ul> <li>It seems that anything as big or bigger than <code>nvarchar(256)</code>, including <code>nvarchar(MAX)</code> will fail.</li> <li>Anything with on or below <code>nvarchar(255)</code> works.<br /> It's like Access was considering <code>nvarchar</code> as a simple string and not a memo if its size is larger than 255. </li> <li>Even stranger, is that <code>varchar(MAX)</code> (wihout the <strong><code>n</code></strong>) actually works!</li> </ul> <p>What I find annoying is that Microsoft's own converter from Access to SQL Server 2008 converts <code>Memo</code> fields into <code>nvarchar(MAX)</code>, so I would expect this to work. </p> <p>The problem now is that I need <code>nvarchar</code> as I'm dealing with Unicode...</p> http://stackoverflow.com/questions/560097/how-can-i-create-a-zip-archive-in-perl 3 How can I create a Zip archive in Perl? Renaud Bompuis 2009-02-18T07:03:19Z 2009-10-15T06:13:56Z <p>I need to create a Zip archive after filtering the list of files I want to include. Preferably I'd like the module to work in both Windows and Linux.</p> <p>Since I need to filter the list of files, I don't really want to to use an external program. I'd rather not introduce external dependencies either so I can compile the script into a single executable on Windows (using <a href="http://www.activestate.com/perl%5Fdev%5Fkit/" rel="nofollow">ActiveState PDK</a>).</p> <p><strong>What I already tried</strong> </p> <p>Until now I've used <a href="http://search.cpan.org/~adamk/Archive-Zip-1.26/lib/Archive/Zip.pm" rel="nofollow">Archive::Zip</a> found on <a href="http://search.cpan.org/" rel="nofollow">CPAN</a> but it has a major bug on Windows machine that use non-ASCII filenames: the filenames get corrupted in the archive as they don't get translated into unicode. </p> <p>There is a <a href="http://rt.cpan.org/Public/Bug/Display.html?id=35334" rel="nofollow">bug report filed</a> for that but it hasn't been updated in over 10 months and in the module documentation the developer is rather unhelpful (of the <a href="http://search.cpan.org/~adamk/Archive-Zip-1.26/lib/Archive/Zip/FAQ.pod#Under%5FWindows,%5Fthings%5Flock%5Fup/get%5Fdamaged" rel="nofollow">"fix your computer or get rid of Windows"</a> kind).</p> <p><em>Update:</em><br /> Thanks to the clarifications from brian and Alan Haggai Alavi it seems that enough love is being put in <code>Archive::Zip</code> to get these bugs out soon and finally have a fully functioning zip module in Windows.</p> http://stackoverflow.com/questions/626642/accessing-the-raw-code-in-an-ms-access-application 2 Accessing the raw code in an MS Access application Renaud Bompuis 2009-03-09T15:17:00Z 2009-09-16T04:08:41Z <p>I've been trying to find some information about getting access to the raw code in MS Access (I use v2007 but should probably apply to all versions).</p> <p>Say for instance that I'd like to list all functions in every code-behind form and module in the application and list their parameters.</p> <p>How would you achieve this?</p> <p>Note: I'm of course assuming that the application is not compiled.</p> http://stackoverflow.com/questions/1407711/adding-relations-to-an-access-database/1408739#1408739 1 Answer by Renaud Bompuis for Adding relations to an Access Database. Renaud Bompuis 2009-09-11T02:47:03Z 2009-09-11T02:47:03Z <p>If your database does not have relationships defined somewhere other than code, there is no real way to guess how tables relate to each other.<br /> Worse, you can't know the type of relationship and whether cascading of update and deletion should occur or not.</p> <p>Having said that, if you followed some strict rules for naming your foreign key fields, then it could be possible to reconstruct the structure of the relationships.</p> <p>For instance, I use a scheme like this one:</p> <pre><code>Table Product - Field ID /* The Unique ID for a Product */ - Field Designation - Field Cost Table Order - Field ID /* the unique ID for an Order */ - Field ProductID - Field Quantity </code></pre> <p>The relationship is easy to detect when looking at the <code>Order</code>: <code>Order.ProductID</code> is related to <code>Product.ID</code> and this can easily be ascertain from code, going through each field. </p> <p>If you have a similar scheme, then how much you can get out of it depends on how well you follow your own convention, but it could go to 100% accuracy although you're probably have some exceptions (that you can build-in your code or, better, look-up somewhere).</p> <p>The other solution is if each of your table's unique ID is following a different numbering scheme.<br /> Say your <code>Order.ID</code> is in fact following a scheme like <code>OR001</code>, <code>OR002</code>, etc and <code>Product.ID</code> follows <code>PD001</code>, <code>PD002</code>, etc.<br /> In that case, going through all fields in all tables, you can search for FK records that match each PK.</p> <p>If you're following a sane convention for naming your fields and tables, then you can probably automate the discovery of the relations between them, store that in a table and manually go through to make corrections.<br /> Once you're done, use that result table to actually build the relationships from code using the <code>Database.CreateRelation()</code> method (look up the Access documentation, there is sample code for it).</p> http://stackoverflow.com/questions/1392917/proper-way-to-check-if-an-unbound-control-has-a-value/1398579#1398579 1 Answer by Renaud Bompuis for Proper way to check if an unbound control has a value Renaud Bompuis 2009-09-09T09:37:33Z 2009-09-09T09:37:33Z <p>Alternatively, I've got a small function that I find useful for checking that sort of thing when dealing with various variable types and I just want to know whether it's <em>blank</em>.</p> <pre><code>'-----------------------------------------------------------------------------' ' True if the argument is Nothing, Null, Empty, Missing or an empty string. ' '-----------------------------------------------------------------------------' Public Function IsBlank(arg As Variant) As Boolean Select Case VarType(arg) Case vbEmpty IsBlank = True Case vbNull IsBlank = True Case vbString IsBlank = (arg = vbNullString) Case vbObject IsBlank = (arg Is Nothing) Case Else IsBlank = IsMissing(arg) End Select End Function </code></pre> <p>Just <a href="http://blog.nkadesign.com/2009/access-checking-blank-variables/" rel="nofollow">Made a blog post</a> today about it too.</p> http://stackoverflow.com/questions/1377686/catching-event-when-a-link-is-clicked-in-a-textbox-displaying-richtext 1 Catching event when a link is clicked in a Textbox displaying richtext Renaud Bompuis 2009-09-04T07:22:37Z 2009-09-04T23:48:14Z <p>In Microsoft Access 2007 the Textbox can be set to display a cut-down version of HTML as richtext.<br /> However, there does not seem to be an easy way to detect what has been clicked within the box itself.</p> <p>For instance, you can display a classic HTML <code>&lt;a&gt;</code> tag that appears as a link but clicking it doesn't generate any event.</p> <p>I'd like to know what has been clicked, somehow.</p> <p>Any idea?</p> http://stackoverflow.com/questions/1377966/event-when-word-2007-changes-the-theme/1378057#1378057 1 Answer by Renaud Bompuis for Event when Word 2007 changes the Theme Renaud Bompuis 2009-09-04T08:55:39Z 2009-09-04T08:55:39Z <p>As crauscher said, Office doesn't seem to trigger any public event when the theme for an Office 2007 application is changed by the user.</p> <p>The easiest you could do is to poll the registry key at regular intervals to see if there was a change:</p> <pre><code>HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Common\Theme </code></pre> <p>Where Theme is <code>1</code> for <em>Blue</em>, <code>2</code> for <em>Silver</em> and <code>3</code> for the <em>Black</em> scheme.</p> <p>This article gives you some C# code you can use and modify: <a href="http://blogs.msdn.com/eric%5Fcarter/archive/2008/04/11/setting-the-backcolor-to-match-the-office-2007-color-scheme.aspx" rel="nofollow">Setting the BackColor to match the Office 2007 color scheme</a></p> <p>Note though that Office 2010 is probably going to break, or at least extend, this mechanism in some way as it will allow anyone to create new Themes for Office.</p> http://stackoverflow.com/questions/392789/are-you-taking-up-perl-and-what-got-you-into-it 12 Are you taking up Perl and what got you into it? Renaud Bompuis 2008-12-25T12:54:18Z 2009-07-23T02:02:53Z <p>I got into Perl years ago and always found it a fun and expressive language to work with.</p> <p>I found that programming in Perl makes me quite productive thanks to its low overhead and the outstanding amount of ready-made solutions to common problems on CPAN.</p> <p>If you're new to Perl, what got you into it?</p> http://stackoverflow.com/questions/419826/resources-for-implementing-erp-and-other-enterprise-applications 2 Resources for implementing ERP and other Enterprise applications? Renaud Bompuis 2009-01-07T10:12:30Z 2009-07-13T19:31:11Z <p>When developing an ERP-like software or any other complex business system, what resources do you go to for best practices?</p> <p>I'm a developer, not an accountant, not a purchaser, not a manager.<br /> I do have project management experience in engineering (non-software related) and I have a fair amount of experience on business processes in Design, Purchasing, Stock management, Sales, Manufacturing, Quality Control, After Sales, etc.</p> <p>My issue though is that when developing business software you always end-up confronted to areas where you lack expertise and I believe that a good understanding of the processes and how others solved similar issues are absolutely essential for developing competent software.</p> <p>So, are there any online resources with some best practices or collections of practical experiences on how people solve and implement business rules and processes in ERP systems and the like?</p> http://stackoverflow.com/questions/1062642/mde-access-decrypt-jdbc/1101766#1101766 0 Answer by Renaud Bompuis for MDE Access decrypt JDBC Renaud Bompuis 2009-07-09T03:54:01Z 2009-07-09T03:54:01Z <p>I assume that you did not make the MDE yourself. As David said, there is no advantage to convert a MDB database to MDE if it is just going to be used as a database file and not an application.</p> <p>Anyway, it looks like some group security was put in place on the new version of the MDE database you are using.<br /> You need to check with the person who created the original database if they set up security so they can give you the proper username and password needed to access it again.</p> <p>Once you get the username/password, you can either change your ODBC data source settings or the connection string you are currently using, usually by adding a <code>"UID=username;PWD=password;"</code> to it.</p> http://stackoverflow.com/questions/1082160/ms-access-2003-simple-value-input-into-a-text-box-from-clicking-label-boxes/1101719#1101719 2 Answer by Renaud Bompuis for MS Access 2003 - Simple value input into a text box from clicking label boxes Renaud Bompuis 2009-07-09T03:35:51Z 2009-07-09T03:35:51Z <p>I would recommend using a transparent button instead of a label. </p> <p>The main reason is that you can set the mouse cursor to become a small hand when you hover over the button, so it gives back information to the user that this can be clicked.<br /> With a label, the user cannot make the difference between a normal label and one that can be clicked since there is no visual cue.</p> <p>To create a button that resemble a label:</p> <ul> <li>Add the button to the form</li> <li>In the properties for the button, set the following: <ul> <li><code>Format &gt; Back-Style: Transparent</code></li> <li><code>Other &gt; Cursor on Hover: Hyperlink Hand</code></li> <li><code>Other &gt; Name: btAutoFill</code> <em>(or whatever name you want)</em></li> </ul></li> <li>If you want the button to resemble a link a bit more, you can change it's caption's format, making it blue and underlined if you wish.</li> </ul> <p>Now if you view the form, you will see that the mouse cursor will change when you move over the 'button label'.</p> <p>To automatically fill-in other controls when you click your button, add the code to handle its <code>OnClick</code> event (in the button's properties, under <code>Events &gt; On Click</code>, choose <code>[Event Procedure]</code>):</p> <pre><code>Public Sub btAutoFill_Click() myTextBox = "NVOWEFDJHF" End Sub </code></pre> http://stackoverflow.com/questions/418960/managing-and-debugging-sql-queries-in-ms-access 0 Managing and debugging SQL queries in MS Access Renaud Bompuis 2009-01-07T02:16:51Z 2009-07-08T17:51:28Z <p>MS Access has limited capabilities to manage raw SQL queries: the editor is quite bad, no syntax highlighting, it reformats your raw SQL into a long string and you can't insert comments.</p> <p>Debugging complex SQL queries is a pain as well: either you have to split it into many smaller queries that become difficult to manage when your schema changes or you end-up with a giant query that is a nightmare to debug and update.</p> <p>How do you manage your complex SQL queries in MS Access and how do you debug them?</p> <p><strong>Edit</strong><br /> At the moment, I'm mostly just using <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a> for some syntax colouring and <a href="http://www.wangz.net/" rel="nofollow">SQL Pretty Printer</a> for reformatting sensibly the raw SQL from Access.<br /> Using an external repository is useful but keeping there's always the risk of getting the two versions out of sync and you still have to remove comments before trying the query in Access...</p> http://stackoverflow.com/questions/1091484/how-to-show-open-file-dialog-in-access-2007-vba/1095983#1095983 1 Answer by Renaud Bompuis for How to show "Open File" Dialog in Access 2007 VBA? Renaud Bompuis 2009-07-08T03:19:55Z 2009-07-08T03:19:55Z <p>In Access 2007 you just need to use <code>Application.FileDialog</code>.</p> <p>Here is the example from the Access documentation:</p> <pre><code>' Requires reference to Microsoft Office 12.0 Object Library. ' Private Sub cmdFileDialog_Click() Dim fDialog As Office.FileDialog Dim varFile As Variant ' Clear listbox contents. ' Me.FileList.RowSource = "" ' Set up the File Dialog. ' Set fDialog = Application.FileDialog(msoFileDialogFilePicker) With fDialog ' Allow user to make multiple selections in dialog box ' .AllowMultiSelect = True ' Set the title of the dialog box. ' .Title = "Please select one or more files" ' Clear out the current filters, and add our own.' .Filters.Clear .Filters.Add "Access Databases", "*.MDB" .Filters.Add "Access Projects", "*.ADP" .Filters.Add "All Files", "*.*" ' Show the dialog box. If the .Show method returns True, the ' ' user picked at least one file. If the .Show method returns ' ' False, the user clicked Cancel. ' If .Show = True Then 'Loop through each file selected and add it to our list box. ' For Each varFile In .SelectedItems Me.FileList.AddItem varFile Next Else MsgBox "You clicked Cancel in the file dialog box." End If End With End Sub </code></pre> <p>As the sample says, just make sure you have a reference to the <em>Microsoft Access 12.0 Object Library</em> (under the VBE IDE > Tools > References menu).</p> http://stackoverflow.com/questions/1057627/problems-with-more-than-1-left-joins-in-msaccess/1062262#1062262 2 Answer by Renaud Bompuis for Problems with More than 1 Left joins in MSAccess Renaud Bompuis 2009-06-30T07:36:54Z 2009-06-30T07:36:54Z <p>The way I would write this would be:</p> <pre><code>SELECT EDM.*, MANAGERDETAILS.* FROM ( SELECT ED.*, MANAGERS.* FROM ( SELECT EMPLOYEE.*, DEPARTMENT.* FROM EMPLOYEE LEFT JOIN DEPARTMENT ON EMPLOYEE.EID = DEPARTMENT.EID ) AS ED LEFT JOIN MANAGERS ON ED.DID = MANAGERS.DID ) AS EDM LEFT JOIN MANAGERDETAILS ON EDM.MDID = MANAGERDETAILS.MDID AND EDM.ENO = MANAGERDETAILS.ENO </code></pre> <p>Basically, you join tables one at a time and alias the result that you can then use for the next join.</p> <p>You can achieve arbitrarily complex Left joins in Access only by aliasing smaller subsets. Your double join clause probably doesn't work because one of its members refers to a deeper resultset than the one that's visible at that level of the query.</p> http://stackoverflow.com/questions/1015830/why-extremely-occasionally-will-one-of-bof-eof-be-true-for-a-new-non-empty-record/1016098#1016098 2 Answer by Renaud Bompuis for Why extremely occasionally will one of bof/eof be true for a new non-empty recordset Renaud Bompuis 2009-06-19T02:27:45Z 2009-06-21T02:06:45Z <p>The documentation clearly states that, if you open a <code>Recordset</code> that has no records:</p> <ul> <li><code>BOF</code> will be true</li> <li><code>EOF</code> will be true</li> <li><code>RecordCount</code> will be <code>0</code></li> </ul> <p>For a non-empty <code>Recordset</code>, neither <code>BOF</code> and <code>EOF</code> are true until you move beyond the first or last record.</p> <p>Could it be that, from time to time, someone else could have added/deleted a record to one of the tables in the recordset you're just opening and change the resultset?<br /> It could be the result of a race condition.</p> <p>Rather than use <code>BOF</code> or <code>EOF</code>, you can test on <code>Recordcount</code>: it's always <code>0</code> if the recordset is empty.<br /> If the recordset is not empty, it will usually return <code>1</code> right after the recordset has been open; <code>Recordcount</code> isn't an expensive operation in that case.<br /> The only way to really return the <em>actual</em> number of records is to issue a <code>MoveLast</code> before calling <code>Recordcount</code> to force all records to be loaded.</p> <p>Usually, if I need to iterate through a resultset in read-only fashion:</p> <pre><code>Dim db as DAO.Database Dim rs as DAO.RecordSet Set db = CurrentDB() Set rs = db.OpenRecordSet("...", dbOpenForwardOnly) If Not (rs Is Nothing) Then With rs Do While Not .EOF ' Do stuff ' .MoveNext Loop .Close End With Set rs = Nothing End If Set db = Nothing </code></pre> <p>If I don't need to iterate through records but just test if anything was returned:</p> <pre><code>Set rs = db.OpenRecordSet("...", dbOpenForwardOnly) If Not (rs Is Nothing) Then With rs If .RecordCount &gt; 0 Then ' We have a result ' Else ' Empty resultset ' End If .Close End With Set rs = Nothing End If Set db = Nothing </code></pre> <p>It's pretty defensive and you have to adapt to your circumstances, but it works correctly every time.</p> <p>Regarding your 2nd question, testing (<code>BOF</code> Or <code>EOF</code>) after opening the recordset should be more foolproof than the <code>And</code> version, although I'd use <code>Recordcount</code> myself.</p> <p><strong>Edit following your revised question:</strong></p> <p>From the bit of code you added to your question, I see a couple of issues, the main one being that your SQL Statement is missing and <code>ORDER BY</code> clause.<br /> The problem is that you are expecting the resultset to be in the <code>Begin Order</code> followed by <code>End Order</code> sequence but your SQL Statement doesn't guarantee you that.<br /> In most cases, since you're using an autoincrement as ID, the database engine will return the data in that natural order, but there is no guarantee that:</p> <ul> <li>It's always going to happen that way</li> <li>That the original data was saved in the expected sequence, resulting in IDs that are in the 'wrong' order.</li> </ul> <p>So, whenever you have expectations about the sequence of the resultset, you must explicitly order it.</p> <p>I would also refactor this bit of code:</p> <pre><code>' ids are autoincrement long integers ' SQLString = "select * from Orders where type = OrderBegin or type = OrderEnd" Dim OrderOpen as Boolean OrderOpen = False Set rs = db.Openrecordset(SQLString) If rs.bof &lt;&gt; True And rs.eof &lt;&gt; True Then myrec.movelast If rs.fields("type").value = BeginOrder Then OrderOpen = True End If End If </code></pre> <p>Into a separate function similar to:</p> <pre><code>' Returns true if the given CustID has a Open Order, ' ' false if they are all closed.' Public Function IsOrderOpen(CustID as Long) As Boolean Dim result as Boolean result = False Dim sql as String ' Here I assume that the Orders table has a OrderDateTime field that ' ' allows us to sort the order in the proper chronological sequence ' ' To avoid loading the complete recordset, we sort the results in a way ' ' that will return the last used order type as the first record.' sql = sql &amp; "SELECT Type " sql = sql &amp; "FROM Orders " sql = sql &amp; "WHERE ((type = OrderBegin) OR (type = OrderEnd)) " sql = sql &amp; " AND (CustID=" &amp; CustID &amp; ")" sql = sql &amp; "ORDER BY OrderDateTime DESC, Type DESC;" Dim db as DAO.Database Dim rs as DAO.Recordset Set db = CurrentDB() Set rs = db.Openrecordset(sql, dbOpenForwardOnly) If Not (rs Is Nothing) Then If rs.RecordCount &gt; 0 Then result = (rs!type = BeginOrder) End If rs.Close End If Set rs = Nothing Set db = Nothing IsOrderOpen = result End Function </code></pre> <p>This would make the whole thing a bit more robust.</p> http://stackoverflow.com/questions/1015336/how-can-i-remove-access-dbs-temporary-ldb-file/1016027#1016027 2 Answer by Renaud Bompuis for How Can I Remove Access Db's temporary ldb file Renaud Bompuis 2009-06-19T01:51:05Z 2009-06-19T01:51:05Z <p>The <code>.ldb</code> file is the lock file for <code>.mdb</code> Access databases. Every time you open a database, the Jet engine will create the lock file and keep it open for as long as someone is connected. Once there are no other clients connected to the database, Jet removes the lock file.</p> <p>So you are seeing the lock file for one of two reasons:</p> <ul> <li>There is an open connection.</li> <li>There is a broken connection, and the lock file could not be removed.</li> </ul> <p>If checking the error logs of your server doesn't give you anything, try to log all database accesses from within your application to a file: append information about the time, connection and other useful debug information.<br /> That could be an easy way to quickly debug the problem and see where and when the connection is left open.</p> <p>Alternatively, you could have a look at this CodeProject article: <a href="http://www.codeproject.com/KB/database/connectionmonitor.aspx" rel="nofollow">Find "Leaked" Database Connections in ASP.NET Web Applications</a>.</p> http://stackoverflow.com/questions/47400/best-way-to-test-a-ms-access-application 9 Best way to test a MS Access application? Renaud Bompuis 2008-09-06T11:58:29Z 2009-06-18T20:28:43Z <p>With the code, forms and data inside the same database I am wondering what are the best practices to design a suite of tests for a Microsoft Access application (say for Access 2007).</p> <p>One of the main issues with testing forms is that only a few controls have a hwnd handle and other controls only get one they have focus, which makes automation quite opaque since you cant get a list of controls on a form to act on.</p> <p>Any experience to share?</p> http://stackoverflow.com/questions/979269/inserting-null-in-an-nvarchar-fails-in-msaccess/979554#979554 2 Answer by Renaud Bompuis for Inserting NULL in an nvarchar fails in MSAccess Renaud Bompuis 2009-06-11T05:57:41Z 2009-06-11T05:57:41Z <p>OK, I may have found a related answer: <a href="http://social.msdn.microsoft.com/Forums/en-US/sqldataaccess/thread/c6d2466e-ecb5-4a98-963f-ae827dbf8caa" rel="nofollow">Ms Access linking table with nvarchar(max)</a>.</p> <p>I tried using the standard <em>SQL Server</em> driver instead of the <em>SQL Server Native Client</em> driver and <code>nvarchar(MAX)</code> works as expected with that older driver.</p> <p>It really annoys me that this seems to be a long-standing, unfixed, bug.<br /> There is no valid reason why <code>nvarchar</code> should be erroneously interpreted as a <code>string</code> by one driver and as a <code>memo</code> when using another.<br /> In both cases, they appear as <code>memo</code> when looking a the datatype under the table design view in Access.</p> <p>If someone has any more information, please leave it on this page. I'm sure others will be glad to find it.</p> http://stackoverflow.com/questions/945025/how-to-check-if-current-event-is-not-during-the-open-event-of-form/954510#954510 1 Answer by Renaud Bompuis for How to check if CURRENT event is not during the OPEN event of form Renaud Bompuis 2009-06-05T06:28:34Z 2009-06-05T06:28:34Z <p>In your form's code:</p> <pre><code>Private isLoading As Boolean Private Sub Form_Open(Cancel as Boolean) isLoading = True End Sub Private Sub Form_Current() If isLoading Then isLoading = False Exit Sub End If End Sub </code></pre> <p>That way the first occurence of the <code>OnCurrent</code> event when the form is opening will be bypassed.</p> <p>That being said, it looks to me that this is not your real underlying problem but you will need to give more information (open another question) if you want other people to try to help.</p> http://stackoverflow.com/questions/934869/sql-server-2005-links-to-access/937683#937683 1 Answer by Renaud Bompuis for SQL Server 2005 Links to Access Renaud Bompuis 2009-06-02T02:30:14Z 2009-06-02T02:30:14Z <p>I concur with <a href="http://stackoverflow.com/questions/934869/sql-server-2005-links-to-access/937191#937191">Tony Toews</a> (and you should trust him on this, he's an Access guru): use SSMA to help you move data to SQL Server, it does a more complete job than the upsizing Wizard integrated in Access (which doesn't work for upsizing to SQL Server 2008 anyway).</p> <p>You have to be wary of a few caveat though; I've made a <a href="http://blog.nkadesign.com/2009/access-building-upsizable-applications/" rel="nofollow">blog post</a> about some of the things you should check out.<br /> The point is that if the original Access database was designed without relying too much on the liberties that Access allows (strange characters in table and column names for instance), then the process will be much easier.<br /> Pay special attention to all the warning and errors reported by SSMA, they are really useful in helping you focus on the issues <em>you must</em> solve.</p> <p>With regards to performance, moving to SQL Server isn't necessarily going to make things faster.<br /> In some areas it will actually be slower, sometimes much much slower:<br /> Access is pretty good at optimizing certain forms of data access but once the database moves outside of its reach, it doesn't have as much control.<br /> Most things will work fine though.</p> <p>You will probably have to rewrite a few queries, maybe move them as views on SQL Server instead of keeping them in your Access application.<br /> Little things such as using <code>%</code> instead of <code>*</code> as wildchars in queries using <code>LIKE</code> in their <code>WHERE</code> clause can also cause strange issues like queries not returning any records.</p> <p>By the way, I'll post a very good resource Tony has on his own website regarding SQL upsizing: <a href="http://www.granite.ab.ca/access/sqlserverupsizing.htm" rel="nofollow"><em>My random thoughts on SQL Server Upsizing from Microsoft Access</em></a>.</p> <p>There is also a good and detailed read about things to consider when using SQL Server from Access: <a href="http://msdn.microsoft.com/en-us/library/bb188204.aspx" rel="nofollow"><em>Optimizing Microsoft Office Access Applications Linked to SQL Server</em></a></p> http://stackoverflow.com/questions/924138/password-protecting-a-ms-access-file/924374#924374 3 Answer by Renaud Bompuis for Password Protecting a MS Access file Renaud Bompuis 2009-05-29T04:23:00Z 2009-05-30T23:13:52Z <p>There are a few ways to enforce some control over what users can do.</p> <h3>AutoExec</h3> <p>The most simple way is to use an <a href="http://vb123.com/Toolshed/05%5Fmap/ch04%5Fautoexec.htm" rel="nofollow"><code>AutoExec</code></a> macro to initialise the user interface when the application starts.<br /> That way to can make sure that only the form you want is displayed and hide everything else.</p> <h3>Runtime</h3> <p>A good complement to this approach is to compile your application and force the user to use the Access Runtime to use your application.<br /> In the runtime, users don't have access to all the standard tools unless you explicitly code for it. </p> <p>A good thing to know is that unlike previous versions, the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=d9ae78d9-9dc6-4b38-9fa6-2c745a175aed&amp;displaylang=en" rel="nofollow">Access 2007 Runtime is free</a>, and that makes Access a very cheap platform to develop for.</p> <h3>Runtime emulation</h3> <p>With Access 2007, a simple way to ensure that the application will open as if only the runtime was installed is to change the extension of the database to <code>.accdr</code>.<br /> You can also force a full Access installation to open a normal database in Runtime emulation by passing the <code>/runtime</code> <a href="http://support.microsoft.com/kb/209207" rel="nofollow">command line switch</a>.</p> <h3>Secure data-access</h3> <p>Note that short of encrypting the database (but then you have to manage the password), all you can do is make it hard for the user to open the tables manually.<br /> A determined and knowledgeable user can always circumvent these protective measures and access the data.<br /> If you need a really secure solution though, Access may not be the best choice: implementing fine grained security in Access is a greater challenge than the alternatives, say storing the data into a SQL Server database for instance where security is enforced.</p> <h3>Links to resources</h3> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/bb421308.aspx" rel="nofollow">Security Considerations and Guidance for Access 2007</a> on MSDN</li> <li>A simple <a href="http://databases.about.com/od/tutorials/ss/usersecurity.htm" rel="nofollow">Microsoft Access User-Level Security Tutorial</a> for older versions of Access.</li> <li><a href="http://databases.about.com/od/tutorials/ss/usersecurity.htm" rel="nofollow">FormSafe</a>, a commercial product that helps enforce security on form controls.</li> </ul> http://stackoverflow.com/questions/925515/does-knowledge-of-statistics-make-you-a-better-programmer/925552#925552 5 Answer by Renaud Bompuis for Does knowledge of statistics make you a better programmer? Renaud Bompuis 2009-05-29T11:27:21Z 2009-05-29T11:41:27Z <p>Basically, if your job has anything to do with sifting through data, then yes, the deeper the better.</p> <p>So if you're interested in these domains, the better your understanding of stats, the deeper you can go:</p> <ul> <li><em>Business Intelligence</em> (previously known as <em>data mining</em>).</li> <li>Scientific modelling</li> <li>Infographics (visual representation of data)</li> </ul> <p>In almost every domain of activity you'll find some use for it.</p> <p>Even if you're not really interested in these topics, having a somewhat basic, but good understanding of stats will help you a lot when you need to think about performance issues in your own code:</p> <ul> <li><p>being able to draft a test scenario that is meaningful (as opposed to testing something that's not relevant)</p></li> <li><p>being able to interpret your own tests to make informed decisions about where to optimise your code for instance.</p></li> <li><p>being able to assess <em>marketing speak</em> for yourself, especially when buying hardware.</p></li> </ul> <p>I wish I was better at it ;-)</p> http://stackoverflow.com/questions/922697/write-conflicts-even-with-me-dirty/924833#924833 1 Answer by Renaud Bompuis for Write Conflicts - even with me.dirty Renaud Bompuis 2009-05-29T07:40:39Z 2009-05-29T09:45:41Z <p>A few comments:</p> <ul> <li><p>is there any particular reason you save the form's data (set <code>Dirty=false</code>) before changing the other field's value (which will make the form dirty again)?<br /> I would first change the other field's data <em>then</em> save the form's data, otherwise the form is <em>always dirty</em>.</p></li> <li><p>changing control's values from code does not call their events, so changing <code>chkSupRequirePrice</code>'s value from <code>chkSupAllowBlankPrice_AfterUpdate()</code> will not call <code>chkSupRequirePrice_AfterUpdate()</code>.</p></li> <li><p>Instead of putting specific code into each event, it's better to regroup everything into the same, say, <code>Update()</code> sub called from each event handler.<br /> It will make it easier to manage you code and its side effects because it's the same piece of code that's called all the time.</p></li> <li><p>having said that, your code <em>should work</em>, so I'm guessing the issue comes from somewhere else in your code.<br /> Write conflicts happen if the same record is already opened for editing elsewhere.<br /> You can play around with the type of locking and see if it changes anything.</p></li> <li><p>to see if the issue is really related to your SQL Server setup, try to unlink the table and instead copy it into your local Access database to see if you're still getting this issue when dealing with a local Access table.</p></li> </ul> http://stackoverflow.com/questions/923274/exporting-to-text-using-access-query-with-parameters/924883#924883 1 Answer by Renaud Bompuis for Exporting to text using access query with parameters Renaud Bompuis 2009-05-29T08:00:55Z 2009-05-29T08:00:55Z <p>A couple more methods:</p> <ul> <li><p>There is a workaround given in the Microsoft's <a href="http://support.microsoft.com/kb/269671/en-us" rel="nofollow">KB269671</a>.<br /> Basically, you have to use an intermediary query with a special syntax.</p></li> <li><p>You can also change the query to a <em>Make Table</em> query and then export its data.</p></li> <li><p>Use and intermediary invisible datasheet form whose <code>RecordSource</code> is set to the query and then have it's <code>FormLoad</code> event export the form to text then close the form.<br /> Just opening the form would prompt the user to enter the parameters and then automatically save it.</p></li> </ul> <p><a href="http://stackoverflow.com/questions/923274/exporting-to-text-using-access-query-with-parameters/923314#923314">Robert's answer</a> may still be the simplest one though.</p> http://stackoverflow.com/questions/924101/ms-access-search-for-record-by-textbox-instead-of-dropdown/924745#924745 1 Answer by Renaud Bompuis for MS Access search for record by textbox instead of dropdown Renaud Bompuis 2009-05-29T07:05:06Z 2009-05-29T07:05:06Z <p>I assume that you have bound your form to a table or a query and that you want to be able to enter the ID manually in a textbox, then press ENTER and load that record's data or display an error message if there is no such record.</p> <p>As <a href="http://stackoverflow.com/questions/924101/ms-access-search-for-record-by-textbox-instead-of-dropdown/924183#924183">dsteele</a> said, make sure that the form's Data property <em>Allow Addtions</em> is set to <code>No</code> to disallow users from adding records.</p> <p>Then, from the <code>AfterUpdate</code> event of the textbox, add the following code (assuming that your textbox is named <code>txtGoTo</code>):</p> <pre><code>Private Sub txtGoTo_AfterUpdate() If (txtGoTo &amp; vbNullString) = vbNullString Then Exit Sub Dim rs As DAO.RecordSet Set rs = Me.RecordsetClone rs.FindFirst "[ID]=" &amp; txtGoTo If rs.NoMatch Then MsgBox "Sorry, no such record '" &amp; txtGoTo &amp; "' was found.", _ vbOKOnly + vbInformation Else Me.RecordSet.Bookmark = rs.Bookmark End If rs.Close txtGoTo = Null End Sub </code></pre> <p>Note that you will have to change the line <code>rs.FindFirst "[ID]=" &amp; txtGoTo</code> to something that is adequate for your data:</p> <ul> <li><p><code>"[ID]="</code> should be replaced by the field you want to search (it could be <code>"[POReference]="</code> or something else. </p></li> <li><p>if you are searching by a numeric ID, for instance because the field is an autonumber column, then the code is fine.<br /> Otherwise, if the field you are searching on is a string (say <code>PN12-G</code>) then you have to change the code to:</p> <pre><code>rs.FindFirst "[ID]=""" &amp; txtGoTo &amp; """" </code></pre></li> </ul> <p>Failing to use the proper quoting (or quoting where not necessary) will result in errors of the kind <em>Data type mismatch...</em>.</p> <p>As a new user, I would recommend that you have a look at the sample <em>NorthWind</em> project database that is either shiped with older versions of Access or available as a template for download from Access 2007.<br /> There a lots of techniques to learn from as a new Access developer, including other ways to implement record navigation.</p> http://stackoverflow.com/questions/923820/listing-subset-of-ms-access-tables-in-ms-excel-with-vba/924290#924290 2 Answer by Renaud Bompuis for Listing subset of MS Access Tables in MS Excel with VBA Renaud Bompuis 2009-05-29T03:41:35Z 2009-05-29T03:41:35Z <p>There are many ways to achieve this.<br /> Here is one:</p> <ul> <li><p>Add an ActiveX ComboBox control to your form (say <code>ComboBox1</code>) and link its <code>LinkedCell</code> property to the cell where you want the result to be stored.</p></li> <li><p>Add a reference to the <em>"Microsoft DAO 3.6 Object Library"</em> to your Excel workbook (ALT-F11 to open the IDE, then menu Tools > References...).<br /> These MDAC components should already installed on all up-to-date machines.<br /> Note that if you use Office 2007, you'll be better off referencing "<em>Microsoft Office 12.0 Access Database engine Object Library"</em> instead as it will allow you to open the newer ACCDB Access 2007 databases as well.</p></li> <li><p>Insert a new Module to your workbook and put this code into it:</p> <pre><code>' Fill the given combobox with all the tables and query names ' ' starting with RP_ found in the given database. ' Public Sub FillWithAccessEntities(PathToAccessDB As String, combox As ComboBox) Dim db As DAO.Database Dim td As DAO.TableDef Dim qd As DAO.QueryDef combox.Clear ' Open the db in exclusive and read-only mode ' Set db = DBEngine.OpenDatabase(PathToAccessDB, True, True) For Each td In db.TableDefs If Left(td.Name, 3) = "RP_" Then combox.AddItem td.Name End If Next For Each qd In db.QueryDefs If Left(qd.Name, 3) = "RP_" Then combox.AddItem qd.Name End If Next db.Close Set db = Nothing End Sub </code></pre></li> <li><p>To initialise the combobox, we can call this code from the workbooks' Open event for instance.<br /> In the <code>ThisWorkbook</code> module, insert this code, assuming that the ActiveX combobox <code>ComboBox1</code> has been added to <code>Sheet1</code>:</p> <pre><code>Sub Workbook_open() FillWithAccessEntities "c:\mydb.mdb", Sheet1.ComboBox1 End Sub </code></pre></li> </ul> <p>Now, when you open the file, the combobox will be automatically populated with the tables and query names from the database.</p> http://stackoverflow.com/questions/814526/checked-list-box/816943#816943 0 Answer by Renaud Bompuis for checked list box Renaud Bompuis 2009-05-03T12:33:49Z 2009-05-03T12:33:49Z <p>There is another choice:</p> <p>If you are using Access 2007, you can declare your field as a lookup field accepting multiple values. When you bind the list box to that field, you will get checkboxes.</p> <p>It's <a href="http://www.databasedev.co.uk/multivalued-fields.html" rel="nofollow">easy to use them</a>.<br /> You'll also find <a href="http://office.microsoft.com/en-us/access/HA012337221033.aspx" rel="nofollow">more information is available from the MS Office website</a>.</p> <p>However, note:</p> <ul> <li><p>This is only possible in the new Access 2007 database format and you will not be able to save your database to the older MDB format.</p></li> <li><p>Multiple value fields are not compatible with most other databases, meaning that if you decide one day to upsize to SQL Server, you'll have to redesign your tables to use a junction table as Remou mentioned.</p></li> <li><p>These multi-value fields are difficult to use from VBA: the value they return is in fact another recordset that you must iterate through to get all the values.</p></li> </ul> <p>Having said that, if you just want something simple and you're not planning on manipulating the database from code, then it can be a practical option, albeit not a very compatible or future-proof one.</p> <p>I'm not using them, but I think others should be able make their own decision knowing what is available to them.</p> http://stackoverflow.com/questions/771918/how-do-i-do-word-stemming-or-lemmatization/790111#790111 1 Answer by Renaud Bompuis for How do I do word Stemming or Lemmatization? Renaud Bompuis 2009-04-26T02:01:55Z 2009-04-26T02:01:55Z <p>Just to make a circular reference to the original question posted on Reddit:<br /> <a href="http://www.reddit.com/r/programming/comments/8e5d3/how%5Fdo%5Fi%5Fprogramatically%5Fdo%5Fstemming%5Feg%5Feating%5Fto/" rel="nofollow">How do I programmatically do stemming? (e.g. "eating" to "eat", "cactuses" to "cactus")</a></p> <p>Posting it here because the comments include useful information.</p> http://stackoverflow.com/questions/534102/preserving-linked-tables-for-access-dbs-in-same-folder-when-the-folder-changes/548419#548419 1 Answer by Renaud Bompuis for Preserving linked tables for Access DBs in same folder when the folder changes Renaud Bompuis 2009-02-14T03:26:36Z 2009-04-14T09:51:17Z <p><strong>Update 14APR2009</strong> I found that the previous answer I gave here was erroneous, so I updated it with new code.</p> <p><strong>How to proceed</strong></p> <ul> <li>Copy the code below to a VBA module.</li> <li><p>From code or from the <em>Immediate</em> window in the VBA IDE, simply type:</p> <pre><code>RefreshLinksToPath Application.CurrentProject.Path </code></pre></li> </ul> <p>This will now relink all the linked tables to use the directory where your application is located.<br /> It only needs to be done once or whenever you relink or add new tables.<br /> I recommend doing this from code every time you start your application.<br /> You can then move your databases around without problems.</p> <p><strong>Code</strong></p> <pre><code>'------------------------------------------------------------' ' Reconnect all linked tables using the given path. ' ' This only needs to be done once after the physical backend ' ' has been moved to another location to correctly link to ' ' the moved tables again. ' ' If the OnlyForTablesMatching parameter is given, then ' ' each table name is tested against the LIKE operator for a ' ' possible match to this parameter. ' ' Only matching tables would be changed. ' ' For instance: ' ' RefreshLinksToPath(CurrentProject.Path, "local*") ' ' Would force all tables whose ane starts with 'local' to be ' ' relinked to the current application directory. ' '------------------------------------------------------------' Public Function RefreshLinksToPath(strNewPath As String, _ Optional OnlyForTablesMatching As String = "*") As Boolean Dim collTbls As New Collection Dim i As Integer Dim strDBPath As String Dim strTbl As String Dim strMsg As String Dim strDBName As String Dim strcon As String Dim dbCurr As DAO.Database Dim dbLink As DAO.Database Dim tdf As TableDef Set dbCurr = CurrentDb On Local Error GoTo fRefreshLinks_Err 'First get all linked tables in a collection' dbCurr.TableDefs.Refresh For Each tdf In dbCurr.TableDefs With tdf If ((.Attributes And TableDefAttributeEnum.dbAttachedTable) = TableDefAttributeEnum.dbAttachedTable) _ And (.Name Like OnlyForTablesMatching) Then collTbls.Add Item:=.Name &amp; .Connect, key:=.Name End If End With Next Set tdf = Nothing ' Now link all of them' For i = collTbls.count To 1 Step -1 strcon = collTbls(i) ' Get the original name of the linked table ' strDBPath = Right(strcon, Len(strcon) - (InStr(1, strcon, "DATABASE=") + 8)) ' Get table name from connection string ' strTbl = Left$(strcon, InStr(1, strcon, ";") - 1) ' Get the name of the linked database ' strDBName = Right(strDBPath, Len(strDBPath) - InStrRev(strDBPath, "\")) ' Reconstruct the full database path with the given path ' strDBPath = strNewPath &amp; "\" &amp; strDBName ' Reconnect ' Set tdf = dbCurr.TableDefs(strTbl) With tdf .Connect = ";Database=" &amp; strDBPath .RefreshLink collTbls.Remove (.Name) End With Next RefreshLinksToPath = True fRefreshLinks_End: Set collTbls = Nothing Set tdf = Nothing Set dbLink = Nothing Set dbCurr = Nothing Exit Function fRefreshLinks_Err: RefreshLinksToPath = False Select Case Err Case 3059: Case Else: strMsg = "Error Information..." &amp; vbCrLf &amp; vbCrLf strMsg = strMsg &amp; "Function: fRefreshLinks" &amp; vbCrLf strMsg = strMsg &amp; "Description: " &amp; Err.Description &amp; vbCrLf strMsg = strMsg &amp; "Error #: " &amp; Format$(Err.Number) &amp; vbCrLf MsgBox strMsg Resume fRefreshLinks_End End Select End Function </code></pre> <p>This code is adapted from this source: <a href="http://www.mvps.org/access/tables/tbl0009.htm" rel="nofollow">http://www.mvps.org/access/tables/tbl0009.htm</a>.<br /> I removed all dependency on other functions to make it self-contained, that's why it's a bit longer than it should.</p> http://stackoverflow.com/questions/732512/sql-server-vs-access-insert-performance-in-particular-when-using-guid 2 SQL Server vs. Access insert performance, in particular when using GUID Renaud Bompuis 2009-04-09T01:54:15Z 2009-04-13T04:55:14Z <p>I'm interested to know how I could improve the performance of SQL Server when using sequential GUID when using Access 2007 as a front end to SQL Server 2008 (please note it's the only context I'm interested in).</p> <p>I have made some tests (and gotten some fairly surprising results, in particular from SQL Server when using <strong>sequential</strong> GUID: the insert performance degrades very very quickly and it doesn't seem right to degrade so quickly to me.</p> <p>Basically the test is as follow: </p> <blockquote> <p><em>From the Access front-end, using VBA only, insert 100,000 records in batches of 1000, sequentially.</em></p> </blockquote> <ul> <li>I tried it both with a Identity and a sequential GUID as the PK.</li> <li>I tried it in <em>SQL Server 2008 Standard</em> (no special tweaking just default install) as and an Access 2007 database as the back-end. All tables linked back to the front-end.</li> </ul> <p>Some of the results (more, with raw data available on <a href="http://blog.nkadesign.com/2009/access-vs-sql-server-some-stats-part-1/" rel="nofollow">my blog entry about the test</a>):</p> <p>It's clear that, as the database grows, the insert performance is reduced but SQL Server isn't performing very well at all here.</p> <p><img src="http://blog.nkadesign.com/wp-content/uploads/2009/04/chart02.png" alt="" /></p> <p>Expanded view of the results for SQL Server: <img src="http://blog.nkadesign.com/wp-content/uploads/2009/04/chart03.png" alt="" /></p> <h3>Edit 13APR2009</h3> <p>I've found an <a href="http://blog.nkadesign.com/2009/sysadmin-dell-server-performance-madness/" rel="nofollow">issue with my server configuration</a> and I updated the <a href="http://blog.nkadesign.com/2009/access-vs-sql-server-some-stats-part-1/" rel="nofollow">tests on my blog</a>.<br /> Thanks to all for your replies, they helped me a lot.</p> http://stackoverflow.com/questions/1365871/how-to-copy-a-table-from-one-database-to-other-database Comment by Renaud Bompuis on How to copy a table from one database to other database? Renaud Bompuis 2009-09-03T10:56:38Z 2009-09-03T10:56:38Z You don't mention if you need just the table schema to be copied or the table schema <i>and</i> its data as well. http://stackoverflow.com/questions/1369594/ms-access-save-query-result-in-a-string Comment by Renaud Bompuis on ms-access save query result in a string Renaud Bompuis 2009-09-03T10:48:51Z 2009-09-03T10:48:51Z You have to clarify your question: do you need headers? what separates the returned fields values? should the columns be of fixed width or not? What separates rows? Is it for display or for saving to a file? http://stackoverflow.com/questions/327658/slow-msaccess-disk-writing/329768#329768 Comment by Renaud Bompuis on Slow MSAccess disk writing Renaud Bompuis 2009-08-26T09:55:05Z 2009-08-26T09:55:05Z Just a clarification: moving to SQL Server Express is the only free option but it won't really solve the database size limit issue as SQL Server Express is limited to 4GB. http://stackoverflow.com/questions/1100458/best-way-to-prompt-for-report-parameters-in-microsoft-access/1100726#1100726 Comment by Renaud Bompuis on Best way to prompt for report parameters in microsoft access Renaud Bompuis 2009-07-09T03:02:07Z 2009-07-09T03:02:07Z Additional comment on these dates: never feed unformatted dates directly into the SQL. If your locale doesn't use dates in the US format, then you're going to get some nasty surprises. I always use a DateToSQL() function that converts a given date into a canonical string that can be fed into raw SQL safely. http://stackoverflow.com/questions/1057627/problems-with-more-than-1-left-joins-in-msaccess Comment by Renaud Bompuis on Problems with More than 1 Left joins in MSAccess Renaud Bompuis 2009-06-30T07:40:34Z 2009-06-30T07:40:34Z Maybe I'm missing something but multiple LEFT JOIN aren't properly supported in the QBE since you can't really set the order in which the joins are operated. I find that multiple joins tend to end-up in a mess and rarely give me what I expect. I usually always resort to SQL for more complex queries, gives me more control over the way the query is constructed. http://stackoverflow.com/questions/1049319/haproxy-and-sharding Comment by Renaud Bompuis on HAProxy and "sharding" Renaud Bompuis 2009-06-26T14:05:10Z 2009-06-26T14:05:10Z You should try to ask this on <a href="http://serverfault.com" rel="nofollow">serverfault.com</a> as it is more of an IT question than a programming one. You'll probably have more luck there. http://stackoverflow.com/questions/1022986/compare-two-arrays-of-different-lengths-and-show-differences Comment by Renaud Bompuis on Compare Two Arrays Of Different Lengths and Show Differences Renaud Bompuis 2009-06-21T02:11:47Z 2009-06-21T02:11:47Z You need to give a bit more details: are the arrays pre-sorted? are they arbitrarily very large? what are the other constraints like memory usage and speed? Are you looking for the shortest possible bit of code? the most simple? the most efficient in terms of resources? http://stackoverflow.com/questions/979269/inserting-null-in-an-nvarchar-fails-in-msaccess/979356#979356 Comment by Renaud Bompuis on Inserting NULL in an nvarchar fails in MSAccess Renaud Bompuis 2009-06-11T05:37:45Z 2009-06-11T05:37:45Z Hi Aaron. The update doesn't even reach the profiler, so it's clearly an ODBC or Access issue, just before the data is sent. I have updated my investigation results above. http://stackoverflow.com/questions/979269/inserting-null-in-an-nvarchar-fails-in-msaccess/979315#979315 Comment by Renaud Bompuis on Inserting NULL in an nvarchar fails in MSAccess Renaud Bompuis 2009-06-11T04:42:28Z 2009-06-11T04:42:28Z All other fields in the table allow Null, apart from the Identity field used as primary key. What I don't get is that if the case was related to the table definition, then it wouldn't work in the SQL Server management studio console either. http://stackoverflow.com/questions/979269/inserting-null-in-an-nvarchar-fails-in-msaccess/979330#979330 Comment by Renaud Bompuis on Inserting NULL in an nvarchar fails in MSAccess Renaud Bompuis 2009-06-11T04:40:31Z 2009-06-11T04:40:31Z No. I extracted the code you see in the question and that's the only thing in the Access application, no forms, no other table trying to access the data, no concurrency issue. http://stackoverflow.com/questions/945025/how-to-check-if-current-event-is-not-during-the-open-event-of-form/954510#954510 Comment by Renaud Bompuis on How to check if CURRENT event is not during the OPEN event of form Renaud Bompuis 2009-06-06T01:42:30Z 2009-06-06T01:42:30Z No need to add anything when the form is closing. Once it is closed the object is normally destroyed. If you re-open it again, new form object will be created with all the values initialised. Variables that belong to a form die with it. http://stackoverflow.com/questions/945025/how-to-check-if-current-event-is-not-during-the-open-event-of-form Comment by Renaud Bompuis on How to check if CURRENT event is not during the OPEN event of form Renaud Bompuis 2009-06-05T06:23:41Z 2009-06-05T06:23:41Z That's the whole purpose of the OnCurrent event: it's called whenever you move to a new record. OnLoad event is only called once once the form is open. http://stackoverflow.com/questions/763888/is-ms-access-jet-suitable-for-multiuser-access/763917#763917 Comment by Renaud Bompuis on Is MS Access (JET) suitable for multiuser access? Renaud Bompuis 2009-06-02T06:29:17Z 2009-06-02T06:29:17Z +1 for reiterating to split the application into its client-front-end part and leaving the data on a back-end database. http://stackoverflow.com/questions/763888/is-ms-access-jet-suitable-for-multiuser-access/763929#763929 Comment by Renaud Bompuis on Is MS Access (JET) suitable for multiuser access? Renaud Bompuis 2009-06-02T06:27:21Z 2009-06-02T06:27:21Z I have a split Access 2007 app with about 20-30 users simultaneously connected to it all day long doing things like Purchase Orders, delivery management, stock management, quality control, Bill of Materials, Part reference management, plenty of reporting, etc. I haven't had any database corruption to speak of. The whole thing has been incredibly solid. http://stackoverflow.com/questions/934869/sql-server-2005-links-to-access/937683#937683 Comment by Renaud Bompuis on SQL Server 2005 Links to Access Renaud Bompuis 2009-06-02T02:40:48Z 2009-06-02T02:40:48Z Thanks Tony :-)