User David W. Fenton - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T21:49:46Zhttp://stackoverflow.com/feeds/user/9787http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/512174/non-web-sql-injection/522382#5223821Answer by David W. Fenton for Non-web SQL InjectionDavid W. Fenton2009-02-06T22:01:36Z2009-12-10T21:54:48Z<p>I'd like to expand on the comment I made above in response to onedaywhen's post outlining how to exploit a SELECT statement in MS Access. Keep in mind that these are <em>not</em> generalized comments about how to protect from SQL injection, but apply specifically to programming in MS Access.</p>
<p>I've never seen any example code for Access that would allow the kind of exploit of a SELECT that onedaywhen outlined. The reason for this is that there's almost never a situation where you would use such simple methods for collecting criteria without some validation of the input somewhere along the way, not to avoid SQL injection, but to avoid bugs caused by invalid SQL.</p>
<p>Here's code implementing the simplest version of this:</p>
<pre><code>Public Sub TestSQLExploit()
Dim strSQL As String
strSQL = "SELECT tblInventory.* FROM tblInventory WHERE InventoryID = "
strSQL = strSQL & InputBox("Enter InventoryID")
Debug.Print strSQL
End Sub
</code></pre>
<p>So, passing "10036 or 'a' = 'a'" produces this SQL:</p>
<pre><code>SELECT tblInventory.*
FROM tblInventory
WHERE InventoryID=10036 Or 'a'='a'
</code></pre>
<p>And that's definitely <em>not</em> good!</p>
<p>Now, I would never write my code that way because I always want to allow for multiple values. Instead, if I were using the InputBox() function to collect the user input (which I honestly never do, since it's too hard to validate), I'd use Application.BuildCriteria to write the WHERE clause, since that would allow me to handle multiple criteria values. That would result in this code:</p>
<pre><code>Public Sub TestSQLExploit1()
Dim strSQL As String
Dim strWhere As String
strSQL = "SELECT tblInventory.* FROM tblInventory "
strWhere = "WHERE " & Application.BuildCriteria("tblInventory.InventoryID", _
dbLong, InputBox("Enter InventoryID"))
strSQL = strSQL & strWhere
Debug.Print strSQL
End Sub
</code></pre>
<p>I honestly thought that Application.BuildCriteria would throw an error on this, but it doesn't, and when passed "10036 or 'a' = 'a'" produces exactly the same SQL. And because of the way the Jet expression service works, it would be wide open, as you say.</p>
<p>Now, I never ever actually write on-the-fly SQL like this, because I just don't like the InputBox() function, precisely because you have to write a bunch of code to validate the input. And if you used it like the code above, you'd have to do a lot to make sure it was valid.</p>
<p>I have never seen any Access code examples for this kind of operation that does not recommend using parameterized SQL (which would, of course, avoid the problem) or a Query-By-Form interface. I generally don't use saved parameter queries in Access, because I like to write my saved queries to be usable everywhere. This means they mostly don't have WHERE clauses that have criteria that change at runtime. When I use these saved queries I provide the WHERE clause for the appropriate situation, whether as a recordsource in a form or a rowsource for a listbox or dropdown list.</p>
<p>Now, the point here is that I'm not asking the user for input in these cases, but drawing the criteria values from Access objects, such as a control on a form. Now, in most cases, this would be a control on a form that has only one purpose -- to collect criteria for some form of filtering. There would be no unvalidated free-text fields on that form -- date fields would have input masks (which would restrict input to valid dates), and fields that have a limited number of valid values would have control types that restrict the choices to valid data. Usually that would be something like a dropdown or an option group.</p>
<p>The reason for that kind of design is not necessarily to avoid SQL injection (though it will prevent that), but to make sure that the user is not frustrated by entering criteria that are invalid and will produce no results.</p>
<p>Now, the other consideration is that sometimes you <em>do</em> want to use some plain text fields so the user can put in certain kind of data that is not already restricted (such as looking up names). Just looking at some of my apps that have name lookup routines with unvalidated text fields, I find that I'm OK, because I <em>don't</em> use BuildCriteria in those cases, because it's designed to collect only one criterion at a time (though the user can input "*" to retrieve multiple records).</p>
<p>If I have a textbox where the user enters "fent* or 'a' = 'a'", and I use that in a WHERE clause:</p>
<pre><code>WHERE tblDonor.LName Like "fent* or 'a' = 'a'"
</code></pre>
<p>The result is that nothing is found. If the user entered "fent* or a = a", it will still not work, because it's a text field and I'm using double quote around it. If the user entered: </p>
<pre><code>fent* or "a" = "a"
</code></pre>
<p>that will break, too, because when my code puts double quotes around it, the WHERE clause will be invalid.</p>
<p>Now, with the case of just taking use input and putting double quotes around it, it's clear that inputting this:</p>
<pre><code>" Or "fent*" or "a" = "a" Or "
</code></pre>
<p>would result in:</p>
<pre><code>WHERE tblDonor.LName Like "" Or "fent*" or "a" = "a" Or ""
</code></pre>
<p>and that would be very bad, since it would return everything. But in my existing applications, I'm already cleaning double quotes out of the user input (since double quotes are theoretically valid within the LName field), so my apps construct this WHERE clause:</p>
<pre><code>WHERE tblDonor.LName Like "? Or ?fent*? or ?a? = ?a? Or ?*"
</code></pre>
<p>That won't return any rows. </p>
<p>But the reason it doesn't is <em>not</em> because I was trying to avoid SQL injection, but because I want the user to be able to look up names that have double quotes embedded in them.</p>
<p>======</p>
<p>Some conclusions:</p>
<ol>
<li><p>never accept free-form input from users when filtering data -- instead, use controls that pre-validate input (e.g., textboxes with input masks, dropdown lists, options groups) and limit it to values that you know are valid.</p></li>
<li><p>when accepting data from a textbox with no restrictions, avoid Application.BuildCriteria, which will process the input in such a way that the user could trick your app into returning all rows (though that's the extent of what the exploit could do). </p></li>
</ol>
<p>What this means on a practical basis is that if you want to collect multiple criteria, you need to do it in a way that the user can only choose from preselected values. The simplest way to do that is with a multiselect listbox (or a pair of them with ADD>> and <<REMOVE command buttons in between).</p>
<p>Of course, whether or not you need to worry about this kind of SELECT exploit depends on the importance and privacy level of the data being retrieved, and exactly what is being returned to the user. It might be no problem to risk returning all rows of non-sensitive data when presenting the data in an uneditable form (e.g., a report), whereas it might be problematic if you presented it in an editable form and someone changed data that oughtn't be edited.</p>
<p>But with non-sensitive data, it will often simply not matter if the user gets too much data returned (except for performance issues, e.g., overloading a server -- but that's better handled in other ways).</p>
<p>So, my takeaway on all of this:</p>
<ol>
<li><p>never use InputBox() to collect criteria (this one I already avoid).</p></li>
<li><p>always use the most limiting control types possible for collecting critiria (this is already something I do regularly).</p></li>
<li><p>if using a textbox to collect string data, treat it as a single criterion no matter what's put in by the user.</p></li>
</ol>
<p>This does mean that I have some apps out there where a user could input "Or 'a' = 'a'" along with a valid criterion and return all rows, but in those apps, this is simply not an issue, as the data is not sensitive.</p>
<p>But it's a good reminder to me not to be complacent. I had thought that Application.BuildCriteria would protect me, but now realize that the Jet expression service is way too forgiving in what it accepts in a WHERE clause.</p>
<p>2009/12/08 EDIT: Just found these links on SQL Injection in MS Access. All of these are targetted at web injection, so not directly applicable to a discussion of Non-Web SQL injection (many of them would be a waste of time in interactive Access, as you already have access to a lot of the information being brute-forced, e.g., information about file system, paths, executables, etc.), but many of the techniques would also work in an Access application. Also, executing from Access opens up a lot of functions that would not be runnable from ODBC/OLEDB. Food for thought.</p>
<ul>
<li><a href="http://www.insomniasec.com/publications/Access-Through-Access.pdf" rel="nofollow">Access Through Access (PDF)</a></li>
<li><a href="http://www.owasp.org/index.php/Testing%5Ffor%5FMS%5FAccess" rel="nofollow">Testing for MS Access</a> </li>
<li><a href="http://www.xuexi123.net/chm/MS%20Access%20SQL%20Injection%20Cheat%20Sheet.htm" rel="nofollow">MS Access SQL Injection Cheat Sheet</a></li>
</ul>
http://stackoverflow.com/questions/1873972/viewing-sql-in-an-access-database/1884325#18843251Answer by David W. Fenton for Viewing SQL in an access database?David W. Fenton2009-12-10T21:54:10Z2009-12-10T21:54:10Z<p>You should also note that objects in Access that return recordsets (forms, reports, combo boxes, listboxes) can also have SQL properties. These cannot be seen except by examining the objects themselves (recordsource for forms/reports, rowsource for combo boxes/listboxes). So, just looking at the SQL of the stored QueryDefs is not going to show you all the SQL statements used in the app.</p>
<p>Additionally, if there's VBA code, there could also be SQL embedded in the code.</p>
http://stackoverflow.com/questions/1880213/ms-access-why-cant-this-update-query-fill-empty-cells/1884219#18842190Answer by David W. Fenton for MS-Access - why can't this update query fill empty cells?David W. Fenton2009-12-10T21:37:11Z2009-12-10T21:37:11Z<p>In total, all the answers in this thread end up solving all the problems with the original SQL statement, but they do so incompletely, so I'll compile them all together in an attempt to create a comprehensive correct answer.</p>
<p>@Wim Hollebrandse wisely points out that a parameter needs brackets, but posts the SQL as:</p>
<pre><code> UPDATE NewTable3 SET colname = '[?]' WHERE ISNULL(colname);
</code></pre>
<p>This is incorrect, in that the quotes will cause what's inside them to be treated literally, instead of evaluated as a paramter, so you'll end up with all your fields updated to the literal value "[?]". The correct syntax would be:</p>
<pre><code> UPDATE NewTable3 SET colname = [?] WHERE ISNULL(colname);
</code></pre>
<p>@GuinnessFan points out a problem in the WHERE clause, suggesting out that the result of IsNull() needs to be compared to True in order for the WHERE clause to work. In other words, this:</p>
<pre><code> WHERE IsNull(NewTable3.colname)
</code></pre>
<p>...should be this:</p>
<pre><code> WHERE IsNull(NewTable3.colname)=True
</code></pre>
<p>But given that both statements evaluate the same, they are entirely equivalent. But @GuinnessFan is correct that this is the best syntax:</p>
<pre><code> WHERE NewTable3.colname Is Null
</code></pre>
<p>@mavnn points out that the fields may be "empty" while not being Null, which is a very common problem. I believe on principle (and consistent with my understanding of the official SQL standards) that fields should be initialized as Null and should not allow zero-length strings. It is certainly possible in some applications that one might want to distinguish Null, i.e., value not yet supplied, from blank (zero-length string), i.e., value known to be blank. But if that's part of the application design, then the user should know that criteria on such fields need to consider whether one or both should be included (i.e., both Null and <>"" or one or the other).</p>
<p>From my point of view, it was unfortunate that the the old default for text fields (where AllowZLS defaulted to FALSE) was changed in Access 2003 to allow ZLS's by default. This means that many people who don't notice that AllowZLS is set to TRUE when they create their tables end up with ZLS's stored in their text fields without intending to do so (and importing a table from a previous version also defaults to TRUE). </p>
<p>While testing for Null and ="" will make the WHERE clause that is seeking all "empty" fields work as expected, the permanent fix is to change the field definition to disallow ZLS's. But do note that changing AllowZLS to FALSE does not clear the existing ZLS's -- you have to run a SQL UPDATE to remove them.</p>
<p>Last of all, in using parameters, it is better to declare them such that the values that the user can input are restricted to appropriate values. If the field is numeric, you to limit it to numeric values, if a date, date values, if text or memo, to text:</p>
<pre><code> PARAMETERS [User Prompt] Long;
UPDATE MyTable SET LongIntegerColumn = [User Prompt]
PARAMETERS [User Prompt] DateTime;
UPDATE MyTable SET DateColumn = [User Prompt]
PARAMETERS [User Prompt] Text ( 255 );
UPDATE MyTable SET TextColumn = [User Prompt]
</code></pre>
<p>Note that with Text(255) as your parameter type, anything supplied by the user is truncated to 255 characters, even if it's longer than that (it would be a pretty unusual situation where'd you'd need that). For values longer than that (such as memo fields), you omit the text length declaration:</p>
<pre><code> PARAMETERS [User Prompt] Text;
UPDATE MyTable SET TextColumn = [User Prompt]
</code></pre>
<p>In any event, I think so-called anonymous parameters are not too helpful, as you aren't leveraging the power of parameters to restrict data type of input criteria.</p>
http://stackoverflow.com/questions/1880458/how-do-i-query-a-property-on-a-record-source-for-a-access-2002-report-in-code/1883958#18839581Answer by David W. Fenton for How do I query a property on a record source for a Access 2002 report in code?David W. Fenton2009-12-10T20:55:26Z2009-12-10T20:55:26Z<p>The only method for examining values in the recordset of a report is to have the field bound as the ControlSource of a control on the report. If it's a field that does not need to be printed on the report, then you have to add an invisible control. Deciding whether to place it in the form's header/footer or in the detail will depend on the layout of your report and what kind of data you're attempting to examine.</p>
<p>You used to be able to do this directly in A97 (without a hidden control), but the results were often confusing, as the data buffer behind the report is often one record ahead of what is displayed onscreen.</p>
<p>Also, you have to be careful which events you try to use, as the data in a report has a very different relationship to what is displayed than is the case in forms. That is, certain events cannot refer to date or controls because they happen at times where the controls do not really exist (or do not have any data in them).</p>
<p>In general, the only events I use in reports are OnOpen, OnNoData, OnClose and the Detail's OnFormat event, and I use them to set recordsource, controls sources, control width/visibility and to draw lines, and not much else.</p>
http://stackoverflow.com/questions/1872554/ms-access-how-to-automatically-select-yes-in-warning-message-boxes/1877234#18772341Answer by David W. Fenton for ms-access - how to automatically select yes in warning message boxes David W. Fenton2009-12-09T22:03:54Z2009-12-09T22:03:54Z<p>To avoid having to write the code Tony supplies every time you execute arbitrary SQL you could use <a href="http://stackoverflow.com/questions/1647591/form-has-my-table-locked-down-tight-even-after-docmd-close/1647793#1647793">my SQLRun function, which is designed as a dropin replacement for DoCmd.RunSQL</a> and avoids all the problems therewith.</p>
http://stackoverflow.com/questions/1852215/how-to-force-user-to-deal-with-the-security-warning-when-starting-access-2007/1856984#18569840Answer by David W. Fenton for How to force user to deal with the Security Warning when starting Access 2007?David W. Fenton2009-12-06T23:19:12Z2009-12-06T23:19:12Z<p>You can avoid this by setting the IsTrusted flag to TRUE in your AutoExec macro. See <a href="http://msdn.microsoft.com/en-us/library/bb203849.aspx" rel="nofollow">Transitioning Your Existing Access Applications to Access 2007</a> -- search for IsTrusted to get you to the heart of the explanation of how to handle it.</p>
http://stackoverflow.com/questions/1856266/commas-instead-of-semicolons-in-ms-access-lookup-column/1856974#18569740Answer by David W. Fenton for Commas instead of semicolons in MS Access lookup columnDavid W. Fenton2009-12-06T23:16:38Z2009-12-06T23:16:38Z<p>Storing a list of items in a field is a design error.</p>
<p>Instead, you should have a table that is related to your main table, and that stores the ProductID (to link it back to a particular product record) and one category per record. Your example data would look like this, assuming ProductID=1:</p>
<pre>ProductID Category
1 shirts
1 clothing
1 wearables
1 sports</pre>
<p>In a web app, you'd then display the results in a multiselect listbox (you add the "multiple" tag inside your SELECT tag). You'd have to iterate through the list to add the SELECTED tag to the items that have already been chosen.</p>
http://stackoverflow.com/questions/1840755/vba-string-length-problem/1844844#18448440Answer by David W. Fenton for VBA string length problemDavid W. Fenton2009-12-04T04:23:56Z2009-12-04T04:23:56Z<p>I don't see what purpose the table myusername_Temp serves here. Is that where the name fields are? If so, avoid the join entirely:</p>
<pre><code> Dim lngEmpNumber As Long
Dim strName As String
Dim strSQL As String
lngEmpNumber = Forms!Reports!txtEmpID
strName = DLookup("[FName] & ' ' & [LName]", "myusername_Temp", "EmpNumber=" & lngEmpNumber
strSQL = "SELECT " & Chr(34) & strName & Chr(34) & " AS [Employee Name], " & _
"CourseName, DateCompleted, tblEmp_SuperAdmin.[Cost Centre] " & _
"FROM tblCourse " & _
"INNER JOIN tblEmpCourses " & _
"ON tblCourse.CourseID = tblEmpCourses.CourseID) " & _
"INNER JOIN tblEmp_SuperAdmin " & _
"ON tblEmp_SuperAdmin.EmpNumber = tblEmpCourses.EmpNo " & _
"WHERE tblEmp_SuperAdmin.EmpNumber = " & lngEmpNumber & _
" ORDER BY CourseName;"
</code></pre>
<p>Now, the parentheses may need to be changed in the join (I always do my equi-joins in the Access QBE and let it take care of the getting the order and parens correct!), and my assumptions about the purpose of the temp table may be wrong, but I don't see it being used for anything other than as an intermediate link between tables, so I guessed it must be there to provide the name fields.</p>
<p>If that's wrong, then I'm at a loss as to why the temp table needs to be there.</p>
<p>Also, in your second post you referred to the control on the form as:</p>
<pre><code> Forms!Reports!txtEmpID.Text
</code></pre>
<p>...the .Text property of Access controls is accessible only when the control has the focus. You could use the .Value property, but since that's the default property of Access controls, you should just stop after the name of the control:</p>
<pre><code> Forms!Reports!txtEmpID
</code></pre>
<p>...you'll see this is how I did it in my suggested code.</p>
<p>I find the idea of your name-based temp table to be highly problematic to begin with. Temp tables don't belong in a front end, and it's not clear to me that it is actually a temp table. If it's temp data, put it in a shared table and key the record(s) to the username. Then you don't have to worry about constructing the table name on the fly.</p>
http://stackoverflow.com/questions/1833746/ms-access-is-there-a-significant-overhead-when-using-currentdb-as-opposed-to-dbe/1837922#18379222Answer by David W. Fenton for MS Access: Is there a significant overhead when using CurrentDB as opposed to DBEngine(0)(0)?David W. Fenton2009-12-03T05:52:34Z2009-12-04T03:50:34Z<p>It's not clear what you mean by the term "overhead," so I don't know how anyone could answer your question as worded.</p>
<p>But the subject of DBEngine(0)(0) vs. CurrentDB has been discussed quite extensively over the years in the Access newsgroups. I long ago made my peace with using CurrentDB, so I'll summarize the situation as I see it.</p>
<h3>DBEngine(0)(0) is far faster than CurrentDB in this code:</h3>
<pre><code> Dim db As DAO.Database
Dim i As Integer
Debug.Print "Start CurrentDB: " & Now()
For i = 1 to 1000
Set db = CurrentDB
Set db = Nothing
Next i
Debug.Print "End CurrentDB: " & Now()
Debug.Print "Start DBEngine(0)(0): " & Now()
For i = 1 to 1000
Set db = DBEngine(0)(0)
Set db = Nothing
Next i
Debug.Print "End DBEngine(0)(0): " & Now()
</code></pre>
<p>If I recall correctly, the ADH97 said that DBEngine(0)(0) was something like 17 times faster.</p>
<p>But look at that code -- it doesn't test anything that is useful. Remember, both CurrentDB and DBEngine(0)(0) return pointers to the database currently open in the Access UI (with certain caveats, below, for DBEngine(0)(0)).There is no place in an Access app where either of those loops is going to be useful in any way. In real code, you do this:</p>
<pre><code> Dim db As DAO.Database
Dim rs As DAO.Recordset
Set db = CurrentDB
Set rs = db.OpenRecordset("a SQL SELECT")
[do something with the recordset]
rs.Close
Set rs = db.OpenRecordset("another SQL SELECT")
[do something with this other recordset]
rs.Close
Set rs = Nothing
db.Executed("A SQL DML statement")
Debug.Print db.RecordsAffected
Set db = Nothing
</code></pre>
<p>While DBEngine(0)(0) may be 1700% faster in a loop, IT DOESN'T MATTER, because you're never going to repeatedly return a reference to the database currently open in the Access UI enough times for the difference to be anything but completely negligible (we're talking milliseconds here, though, of course, CurrentDB will take longer for databases with more objects).</p>
<p>So, first off, before I explain <em>why</em> there's a difference, you must first recognize that the performance difference is completely immaterial, as the only circumstances in which it can exceed the most trivial difference is a circumstance that would be brain-dead stupid code.</p>
<p>Now, why the difference? </p>
<p>Well, there are two main reasons:</p>
<ol>
<li><p>DBEngine(0)(0) returns the collections as they were initialized when the database currently open in the user interface was first open, unless you manually refresh the collections. So, if you add a new saved QueryDef, for it to be available in code using DBEngine(0)(0), after adding the new QueryDef you have to call <pre>DBEngine(0)(0).QueryDefs.Refresh</pre>Before that, your new query won't be in the QueryDefs collection, but after it, it will. CurrentDB, on the other hand, refreshes all collections each time it is called, so you never have to worry about refreshing any of your collections.</p></li>
<li><p>DBEngine(0)(0) returns the internal pointer the Access Jet workspace uses to point to the database currently open in the Access UI. CurrentDB returns a copy of the database structure, and each call to CurrentDB creates a new copy. Thus, CurrentDB will use more memory, because it creates a copy of the structure that points to the database currently open in the Access UI, while DBEngine(0)(0) uses no additional memory, because it returns not a copy, but simply a pointer to an existing memory structure.</p></li>
</ol>
<p>Likely the refreshing of the collections is the reason why CurrentDB is "1700%" slower (or whatever the number was), but probably some of the extra time is taken up by the process of setting up the copy of the database object, as well.</p>
<p>Again, none of this makes any difference in actual coding practice, as you just don't need to constantly be opening and closing pointers to the database currently open in the Access UI, as IT'S NOT BEING OPENED AND CLOSED CONSTANTLY.</p>
<p>So, is this a potaeto/potahto thing? </p>
<p>No, because there's one "bug" in DBEngine(0)(0) that could cause it to return an unexpected database pointer (though it would actually be technically correct), and that is in certain contexts immediately after an Access wizard has run, DBEngine(0)(0) will return a pointer to the <em>wizard</em> database, and not to the database currently open in the Access UI.</p>
<p>That is because there is a distinction between:</p>
<ol>
<li><p>the database currently open in the Access UI, AND</p></li>
<li><p>the first database in the first workspace of the DBEngine object.</p></li>
</ol>
<p>CurrentDB, on the other hand, always returns a reference to #1 and never to #2. DBEngine(0)(0), however, can return something else, as for a very brief moment, the wizard really <em>is</em> the first database in the first workspace of the DBEngine object right after the wizard is dismissed.</p>
<p>Now, is it likely that production code could ever encounter this error? Probably not, since it's unlikely that you'd use a wizard in a production app. But this could also apply to library databases, and that's not so uncommon a technique, particularly for advanced Access programmers.</p>
<p>If there were a practical performance difference, DBEngine(0)(0) might be worth it, but since there isn't, CurrentDB is preferable since it is 100% reliable in returning the expected database reference.</p>
<p>All that said, I don't use either in my apps.</p>
<p>Instead, I use a function that caches a database variable initialized with CurrentDB. This means I never have to initialize any database variables, just use my dbLocal() function in place of any database variable. Here's the code:</p>
<pre><code> Public Function dbLocal(Optional bolCleanup As Boolean = False) As DAO.Database
' This function started life based on a suggestion from
' Michael Kaplan in comp.databases.ms-access back in the early 2000s
' 2003/02/08 DWF added comments to explain it to myself!
' 2005/03/18 DWF changed to use Static variable instead
' uses GoTos instead of If/Then because:
' error of dbCurrent not being Nothing but dbCurrent being closed (3420)
' would then be jumping back into the middle of an If/Then statement
On Error GoTo errHandler
Static dbCurrent As DAO.Database
Dim strTest As String
If bolCleanup Then GoTo closeDB
retryDB:
If dbCurrent Is Nothing Then
Set dbCurrent = CurrentDb()
End If
' now that we know the db variable is not Nothing, test if it's Open
strTest = dbCurrent.Name
exitRoutine:
Set dbLocal = dbCurrent
Exit Function
closeDB:
If Not (dbCurrent Is Nothing) Then
'dbCurrent.close ' this never has any effect
Set dbCurrent = Nothing
End If
GoTo exitRoutine
errHandler:
Select Case Err.Number
Case 3420 ' Object invalid or no longer set.
Set dbCurrent = Nothing
If Not bolCleanup Then
Resume retryDB
Else
Resume closeDB
End If
Case Else
MsgBox Err.Number & ": " & Err.Description, vbExclamation, "Error in dbLocal()"
Resume exitRoutine
End Select
End Function
</code></pre>
<p>In code, you use this thus:</p>
<pre><code> Dim rs As DAO.Recordset
Set rs = dbLocal.OpenRecordset("SQL SELECT statement")
[do whatver]
rs.Close
Set rs = Nothing
dbLocal.Execute("SQL INSERT statement")
Debug.Print dbLocal.OpenRecordset("SELECT @@IDENTITY")(0)
dbLocal.Execute("SQL UPDATE statement")
Debug.Print dbLocal.RecordsAffected
</code></pre>
<p>The first time you call it, it will initialize itself with CurrentDB and return the cached database object.</p>
<p>When you close the app, you call it with the bolCleanup flag set to TRUE so that it will clean up the cached variable.</p>
<p>If you add to the collections, they don't refresh (because you're not calling CurrentDB each time, just using a cached database variable that was initialized with CurrentDB), so you have to do this:</p>
<pre><code> [add a new QueryDef]
dbLocal.QueryDefs.Refresh
</code></pre>
<p>And that's it. No global variables, no need to constantly initialize database variables with CurrentDB (or DBEngine(0)(0)). You just use it and stop worrying about it. The only technical detail is making sure that your app's shutdown routine calls dbLocal(False).</p>
<p>So, that's my take on DBEngine(0)(0) vs. CurrentDB.</p>
<p>A side issue about cleanup of database variables initialized by these two methods:</p>
<p>If you initialize a db variable with CurrentDB, you don't close it, just set it to Nothing:</p>
<pre><code> Dim db As DAO.Database
Set db = CurrentDB
...
'db.Close <= don't do this
Set db = Nothing
</code></pre>
<p>If you <em>do</em> issue the db.Close, nothing at all will happen, neither bad nor good.</p>
<p>On the other hand, in this case:</p>
<pre><code> Dim db As DAO.Database
Set db = DBEngine(0)(0)
...
'db.Close <= don't do this
Set db = Nothing
</code></pre>
<p>...issuing the db.Close can cause your app to crash in certain versions of Access.</p>
<p>Neither of them could actually work, because you can't close the database currently open in the Access UI via the Close method of a database object.</p>
<p>On the other hand, if you do this:</p>
<pre><code> Dim db As DAO.Database
Set db = DBEngine.OpenDatabase("path to external MDB file")
...
db.Close ' <=you *must* do this
Set db = Nothing
</code></pre>
<p>...you really <em>do</em> want to close it out, as it is an external database. That code <em>can't</em> be done with CurrentDB, because this is the only way to open a reference to another database.</p>
http://stackoverflow.com/questions/1830947/sql-date-interval/1837972#18379721Answer by David W. Fenton for SQL Date IntervalDavid W. Fenton2009-12-03T06:07:07Z2009-12-03T06:07:07Z<p>You've been given a correct answer by @OMG Ponies:</p>
<pre><code> DELETE FROM your_table
WHERE DateDiff("m", startDate, EndDate) <= 6
</code></pre>
<p>...but I would tend not to use this, as it won't use indexes. Instead, I'd use this:</p>
<pre><code> DELETE FROM your_table
WHERE StartDate <= DateAdd("m", -6, EndDate)
</code></pre>
<p>Because you're testing a calculation against a field and not against a literal value, any index on StartDate can be used. For large tables, this could be a significant difference.</p>
http://stackoverflow.com/questions/1826241/how-do-i-prevent-an-error-2101-in-access-when-i-have-a-button-to-save-a-record-on/1829247#18292470Answer by David W. Fenton for How do I prevent an error 2101 in Access when I have a button to save a record on a form?David W. Fenton2009-12-01T22:02:04Z2009-12-01T22:02:04Z<p>You've designed your interface in a way that I think is wrong. I don't let a user click a SAVE button until all the data is filled out.</p>
<p>Thus, the SAVE button is disabled until the point at which all the required fields are filled out. In order to accomplish this, you'd test the value of each required control in the control's AfterUpdate event. In general, you need to test the group of values, so I tend to write a function that tests all the required values and returns TRUE if all are filled out, and then use that in the AfterUpdate event of all the required controls:</p>
<pre><code> Private Sub txtLastName_AfterUpdate()
Me!btnSave.Enabled = CheckRequiredFields()
End Sub
</code></pre>
<p>Now, to make this easier on yourself, you can change CheckRequiredFields so that it is not just a function, but sets the Enabled property of the Save button, and then you can just paste "=CheckRequiredFields" into the AfterUpdate property of all the controls (this assumes you don't need to do anything else in the AfterUpdate events).</p>
<p>I do this all the time for dialog forms, disabling the OK button by default and enabling only the Cancel button. I then test that all fields have been filled out using the method above. Thus, the user can't perform the action until everything has been properly entered. This seems to me to be preferable to catching the missing data in the SAVE button -- that is, don't let the user even try to save until the record is done.</p>
http://stackoverflow.com/questions/1818475/replacement-or-migration-strategy-for-excel-access/1823983#18239832Answer by David W. Fenton for Replacement or Migration strategy for Excel/AccessDavid W. Fenton2009-12-01T04:24:36Z2009-12-01T04:24:36Z<p>I would second one of Kevin Ross's main points:</p>
<blockquote>
<p>I personally think their should be a
small team of people within IT whose
job (or one of their jobs) is to
develop these small applications. They
should work very closely with the end
users and not be locked in the ivory
tower of IT.</p>
</blockquote>
<p>I think any IT department that has a lot of users using Access/Excel should have at least one properly trained and experienced specialist in developing apps on those platforms. That person would be the go-between to make sure that:</p>
<ol>
<li><p>IT's priorities and policies get properly implemented in the home-grown apps.</p></li>
<li><p>the end users get expert help in converting their home-grown efforts into something more stable and well-designed.</p></li>
</ol>
<p>I would second Tony's point that whoever works with the end users in revising these apps to meet IT standards should work side-by-side with the users. The Access/Excel specialist should be an advocate for the end users, but also for the IT policies that have to be followed.</p>
<p>I also think that an IT department could have a specialist or two on staff, but should also have a full-time professional Access and/or Excel developer as a consultant, since the on-staff people could probably handle day-to-day issues and management of the apps, while the professional consultant could be called in for planning and architecture and for the implementation of more complex feature sets.</p>
<p>But all of that would depend on the size of the organization and the number of apps involved. I don't know that it would be desirable to have someone on salary who is nothing but an Access/Excel specialist, precisely because of the problem you get with all salaried employees compared to consultants -- the employees don't see as wide a variety of situations as an active consultant with the same specialization is likely to see and thus the consultant is going to have broader experience.</p>
<p>Of course, I recognize that many companies do not like to outsource anything, or not something that important. I think that's unwise, but then again, I'm the person that gets hired by the people who decide to do it!</p>
http://stackoverflow.com/questions/1807934/ms-access-cant-open-any-more-tables-using-jdbcodbcdriver/1811349#18113492Answer by David W. Fenton for MS Access - Can't Open Any More Tables using JdbcOdbcDriverDavid W. Fenton2009-11-28T02:30:00Z2009-11-28T02:30:00Z<p>"Can't open any more tables" is a better error message than the "Can't open any more databases," which is more commonly encountered in my experience. In fact, that latter message is almost always masking the former.</p>
<p>The Jet 4 database engine has a limit of 2048 table <em>handles</em>. It's not entirely clear to me whether this is simultaneous or cumulative within the life of a connection. I've always assumed it is cumulative, since opening fewer recordsets at a time in practice seems to make it possible to avoid the problem.</p>
<p>The issue is that "table handles" doesn't just refer to table handles, but to something much more.</p>
<p>Consider a saved QueryDef with this SQL:</p>
<pre><code> SELECT tblInventory.* From tblInventory;
</code></pre>
<p>Running that QueryDef uses TWO table handles. </p>
<p>What?, you might ask? It only uses one table! But Jet uses a table handle for the table and a table handle for the saved QueryDef.</p>
<p>Thus, if you have a QueryDef like this:</p>
<pre><code> SELECT qryInventory.InventoryID, qryAuthor.AuthorName
FROM qryInventory JOIN qryAuthor ON qryInventory.AuthorID = qryAuthor.AuthorID
</code></pre>
<p>...if each of your source queries has two tables in it, you're using these table handles, one for each:</p>
<pre><code> Table 1 in qryInventory
Table 2 in qryInventory
qryInventory
Table 1 in qryAuthor
Table 2 in qryAuthor
qryAuthor
the top-level QueryDef
</code></pre>
<p>So, you might think you have only four tables involved (because there are only four base tables), but you'll actually be using 7 table <em>handles</em> in order to use those 4 base tables.</p>
<p>If in a recordset, you then use the saved QueryDef that uses 7 table handles, you've used up yet another table handle, for a total of 8.</p>
<p>Back in the Jet 3.5 days, the original table handles limitation was 1024, and I bumped up against it on a deadline when I replicated the data file after designing a working app. The problem was that some of the replication tables are open at all times (perhaps for each recordset?), and that used up just enough more table handles to put the app over the top.</p>
<p>In the original design of that app, I was opening a bunch of heavyweight forms with lots of subforms and combo boxes and listboxes, and at that time I used a lot of saved QueryDefs to preassemble standard recordsets that I'd use in many places (just like you would with views on any server database). What fixed the problem was:</p>
<ol>
<li><p>loading the subforms only when they were displayed.</p></li>
<li><p>loading the rowsources of the combo boxes and listboxes only when they were onscreen.</p></li>
<li><p>getting rid of all the saved QueryDefs and using SQL statements that joined the raw tables, wherever possible.</p></li>
</ol>
<p>This allowed me to deploy that app in the London office only one week later than planned. When Jet SP2 came out, it doubled the number of table handles, which is what we still have in Jet 4 (and, I presume, the ACE).</p>
<p>In terms of using Jet from Java via ODBC, the key point would be, I think:</p>
<ol>
<li><p>use a single connection throughout your app, rather than opening and closing them as needed (which leaves you in danger of failing to close them).</p></li>
<li><p>open recordsets only when you need them, and clean up and release their resources when you are done.</p></li>
</ol>
<p>Now, it could be that there are memory leaks somewhere in the JDBC=>ODBC=>Jet chain where you <em>think</em> you are releasing resources and they aren't getting released at all. I don't have any advice specific to JDBC (as I don't use it -- I'm an Access programmer, after all), but in VBA we have to be careful about explicitly closing our objects and releasing their memory structures because VBA uses reference counting, and sometimes it doesn't know that a reference to an object has been released, so it doesn't release the memory for that object when it goes out of scope.</p>
<p>So, in VBA code, any time you do this:</p>
<pre><code> Dim db As DAO.Database
Dim rs As DAO.Recordset
Set db = DBEngine(0).OpenDatabase("[database path/name]")
Set rs = db.OpenRecordset("[SQL String]")
</code></pre>
<p>...after you've done what you need to do, you have to finish with this:</p>
<pre><code> rs.Close ' closes the recordset
Set rs = Nothing ' clears the pointer to the memory formerly used by it
db.Close
Set db = Nothing
</code></pre>
<p>...and that's even if your declared variables go out of scope immediately after that code (which should release all the memory used by them, but doesn't do so 100% reliably).</p>
<p>Now, I'm not saying this is what you do in Java, but I'm simply suggesting that if you're having problems and you think you're releasing all your resources, perhaps you need to determine if you're depending on garbage collection to do so and instead need to do so explicitly.</p>
<p>Forgive me if I'd said anything that's stupid in regard to Java and JDBC -- I'm just reporting some of the problems that Access developers have had in interacting with Jet (via DAO, not ODBC) that report the same error message that you're getting, in the hope that our experience and practice might suggest a solution for your particular programming environment.</p>
http://stackoverflow.com/questions/1802120/building-sql-strings-in-access-vba/1805957#18059571Answer by David W. Fenton for Building SQL strings in Access/VBADavid W. Fenton2009-11-26T22:32:09Z2009-11-27T09:51:10Z<p>As others have said, it's probably better to utilize parameters in the first place. However, ...</p>
<p>I, too, have missed a concatenation operator, having become accustomed to .= in PHP. In a few cases, I've written a function to do it, though not specific to concatenating SQL strings. Here's the code for one I use for creating a query string for an HTTP GET:</p>
<pre><code> Public Sub AppendQueryString(strInput As String, _
ByVal strAppend As String, Optional ByVal strOperator As String = "&")
strAppend = StringReplace(strAppend, "&", "&amp;")
strInput = strInput & strOperator & strAppend
End Sub
</code></pre>
<p>And an example of where I've called it:</p>
<pre><code> AppendQueryString strOutput, "InventoryID=" & frm!InventoryID, vbNullstring
AppendQueryString strOutput, "Author=" & URLEncode(frm!Author)
</code></pre>
<p>...and so forth.</p>
<p>Now, for constructing SQL WHERE clauses, you might consider something like that as a wrapper around Application.BuildCriteria:</p>
<pre><code> Public Sub ConcatenateWhere(ByRef strWhere As String, _
strField As String, intDataType As Integer, ByVal varValue As Variant)
If Len(strWhere) > 0 Then
strWhere = strWhere & " AND "
End If
strWhere = strWhere & Application.BuildCriteria(strField, _
intDataType, varValue)
End Sub
</code></pre>
<p>You would then call that as:</p>
<pre><code> Dim strWhere As String
ConcatenateWhere strWhere,"tblInventory.InventoryID", dbLong, 10036
ConcatenateWhere strWhere,"tblInventory.OtherAuthors", dbText, "*Einstein*"
Debug.Print strWhere
strSQL = "SELECT tblInventory.* FROM tblInventory"
strSQL = strSQL & " WHERE " & strWhere
</code></pre>
<p>...and the Debug.Print would output this string:</p>
<pre><code> tblInventory.InventoryID=10036 AND tblInventory.OtherAuthors Like "*Einstein*"
</code></pre>
<p>Variations on that might be more useful to you, i.e., you might want to have an optional concatenation operator (so you could have OR), but I'd likely do that by constructing a succession of WHERE strings and concatenating them with OR line by line in code, since you'd likely want to place your parentheses carefully to make sure the AND/OR priority is properly executed.</p>
<p>Now, none of this really addresses the concatenation of VALUES for an INSERT statement, but I question how often you're actually inserting literal values in an Access app. Unless you're using an unbound form for inserting records, you will be using a form to insert records, and thus no SQL statement at all. So, for VALUES clauses, it seems that in an Access app you shouldn't need this very often. If you are finding yourself needing to write VALUES clauses like this, I'd suggest you're not using Access properly.</p>
<p>That said, you could use something like this:</p>
<pre><code> Public Sub ConcatenateValues(ByRef strValues As String, _
intDatatype As Integer, varValue As Variant)
Dim strValue As String
If Len(strValues) > 0 Then
strValues = strValues & ", "
End If
Select Case intDatatype
Case dbChar, dbMemo, dbText
' you might want to change this to escape internal double/single quotes
strValue = Chr(34) & varValue & Chr(34)
Case dbDate, dbTime
strValue = "#" & varValue & "#"
Case dbGUID
' this is only a guess
strValues = Chr(34) & StringFromGUID(varValue) & Chr(34)
Case dbBinary, dbLongBinary, dbVarBinary
' numeric?
Case dbTimeStamp
' text? numeric?
Case Else
' dbBigInt , dbBoolean, dbByte, dbCurrency, dbDecimal,
' dbDouble, dbFloat, dbInteger, dbLong, dbNumeric, dbSingle
strValue = varValue
End Select
strValues = strValues & strValue
End Sub
</code></pre>
<p>...which would concatenate your values list, and then you could concatenate into your whole SQL string (between the parens of the VALUES() clause).</p>
<p>But as others have said, it's probably better to utilize parameters in the first place.</p>
http://stackoverflow.com/questions/1800312/programmatically-check-for-access-database-corruption/1806108#18061081Answer by David W. Fenton for Programmatically check for Access database corruption?David W. Fenton2009-11-26T23:28:19Z2009-11-26T23:28:19Z<p>Proper compilation practices will prevent corruption of the VBA project (which is what you're talking about here).</p>
<p>That entails:</p>
<ol>
<li><p>use OPTION EXPLICIT in all modules.</p></li>
<li><p>turn off COMPILE ON DEMAND in the VBE options.</p></li>
<li><p>compile your code regularly, while working.</p></li>
<li><p>periodically (e.g., once a day after a full day of coding) decompile and recompile the code.</p></li>
</ol>
<p>If you do this, you'll never encounter corruption in the first place so you won't need to test for it (which is impossible in the first place).</p>
http://stackoverflow.com/questions/1801658/database-synchronization-ms-access/1806084#18060840Answer by David W. Fenton for database synchronization - MS AccessDavid W. Fenton2009-11-26T23:15:56Z2009-11-26T23:15:56Z<p>The answers in this thread are filled with misinformation about Jet Replication from people who obviously haven't used it and are just repeating things they've heard, or are attributing problems to Jet Replication that actually reflect application design errors.</p>
<blockquote>
<p>It is possible to use the Jet
replication built into Access, but I
will warn you, it is quite flaky.</p>
</blockquote>
<p>Jet Replication is not flakey. It is perfectly reliable when used properly, just like any other complex tool. It is true that certain things that cause no problems in a non-replicated database can lead to issues when replicated, but that stands to reason because of the nature of what replication by <em>any</em> database engine entails.</p>
<blockquote>
<p>It will also mess up your PK on
whatever tables you do it on because
it picks random signed integers to try
and avoid key collisions, so you might
end up with -1243482392912 as your
next PK on a given record. That's a
PITA to type in if you're doing any
kind of lookup on it (like a customer
ID, order number, etc.)</p>
</blockquote>
<p>Surrogate Autonumber PKs should never be exposed to users in the first place. They are meaningless numbers used for joining records behind the scenes, and if you're exposing them to users IT'S AN ERROR IN YOUR APPLICATION DESIGN.</p>
<p>If you do need sequence numbers, you'll have to roll your own and deal with the issue of how to prevent collisions between your replicas. But that's an issue for replication in <em>any</em> database engine. SQL Server offers the capability of allocating blocks of sequence numbers for individual replicas at the database engine level and that's a really nice feature, but it comes at the cost of increased administrative overhead from maintaining multiple SQL Server instances (with all the security and performance issues that entails). In Jet Replication, you'd have to do this in code, but that's hardly a complicated issue. </p>
<p>Another alternative would be to use a compound PK, where one column indicates the source replica.</p>
<p>But this is not some flaw in the Replication implementation of Jet -- it's an issue for any replication scenario with a need for meaningful sequence numbers.</p>
<blockquote>
<p>You can't automate Access
synchronization (maybe you can fake
something like it by using VBA. but
still, that will only be run when the
database is opened).</p>
</blockquote>
<p>This is patently untrue. If you install the Jet synchronizer you can schedule synchs (direct, indirect or Internet synchs). Even without it, you could schedule a VBScript to run periodically and do the synchronization. Those are just two methods of accomplishing automated Jet synchroniziation without needing to open your Access application.</p>
<p>A quote from MS documentation:</p>
<blockquote>
<p>Use Jet and Replication Objects</p>
</blockquote>
<p>JRO is really not the best way to manage Jet Replication. For one, it has only one function in it that DAO itself lacks, i.e., the ability to initiate an indirect synch in code. But if you're going to add a dependency to your app (JRO requires a reference, or can be used via late binding), you might as well add a dependency on a truly useful library for controlling Jet Replication, and that's the <a href="http://trigeminal.com/lang/1033/utility.asp?ItemID=9#9" rel="nofollow">TSI Synchronizer</a>, created by Michael Kaplan, once the world's foremost expert on Jet Replication (who has since moved onto internationalization as his area of concentration). It gives you full programmatic control of almost all the replication functionality that Jet exposes, including scheduling synchs, initiating all kinds of synchronization, and the much-needed MoveReplica command (the only legal way to move or rename a replica without breaking replication).</p>
<p>JRO is one of the ugly stepchildren of Microsoft's aborted ADO-Everywhere campaign. Its purpose is to provide Jet-specific functionality to supplement what is supported in ADO itself. If you're not using ADO (and you shouldn't be in an Access app with a Jet back end), then you don't really want to use JRO. As I said above, it adds only one function that isn't already available in DAO (i.e., initiating an indirect synch). I can't help but think that Microsoft was being spiteful by creating a standalone library for Jet-specific functionality and then purposefully leaving out all the incredibly useful functions that they could have supported had they chosen to.</p>
<p>Now that I've disposed of the erroneous assertions in the answers offered above, here's my recomendation:</p>
<p>Because you have an append-only infrastructure, do what @Remou has recommended and set up something to manually send the new records whereever they need to go. And he's right that you still have to deal with the PK issue, just as you would if you used Jet Replication. This is because that's necessitated by the requirement to add new records in multiple locations, and is common to all replication/synchronization applications. </p>
<p>But one caveat: if the add-only scenario changes in the future, you'll be hosed and have to start from scratch or write a whole lot of hairy code to manage deletes and updates (this is not easy -- trust me, I've done it!). One advantage of just using Jet Replication (even though it's most valuable for two-way synchronizations, i.e., edits in multiple locations) is that it will handle the add-only scenario without any problems, and then easily handle full merge replication should it become a requirement in the future.</p>
<p>Last of all, a good place to start with Jet Replication is the <a href="http://dfenton.com/DFA/Replication/" rel="nofollow">Jet Replication Wiki</a>. The Resources, Best Practices and Things Not to Believe pages are probably the best places to start.</p>
http://stackoverflow.com/questions/1787405/c-access-interop-docmd-value-combobox/1794331#17943310Answer by David W. Fenton for C#/Access Interop DoCmd value comboboxDavid W. Fenton2009-11-25T02:46:51Z2009-11-25T02:46:51Z<p>I don't know a damned thing about C#, but have you tried the obvious:</p>
<pre><code> app.Forms["frmMain"]["ctrlCustList"] = "value you want to set it to"
</code></pre>
<p>That's the way the code would work in Access itself.</p>
http://stackoverflow.com/questions/1789847/access-database-pass-through-query/1794325#17943250Answer by David W. Fenton for Access Database Pass Through Query?David W. Fenton2009-11-25T02:43:16Z2009-11-25T02:43:16Z<p>Another alternative is DoCmd.TransferDatabase to import the table directly, using the appropriate ODBC connect string. I don't know if it's more efficient than the INSERT INTO, but I do know that INSERT INTO can get the data types badly wrong and won't import your indexes, whereas TransferDatabase is likely to do better (though likely also not perfectly).</p>
http://stackoverflow.com/questions/1752041/upgrading-and-security-implementation-access-2000-2003-and-up/1752665#17526650Answer by David W. Fenton for Upgrading and Security Implementation (Access 2000-2003 and up)David W. Fenton2009-11-17T23:39:16Z2009-11-17T23:39:16Z<p>I would wait until A2010 is out before making any determination about upgrades beyond A2003. A2003 is fine for now, seems to me. I certainly wouldn't want to wade into targetting development to A2007 with A2010 coming out so soon and having so many really great new features (table-level data macros, really useful additions to Sharepoint integration that make a lot of really huge things possible, to name just two). My plan is to skip A2007 with clients (though I have it installed now and am playing with it so that I'll be better prepared when 2010 comes out).</p>
<p>One thing that doesn't often get mentioned about A2007 is that the Office FileSearch object was removed in Office 2007. If your app uses it, you can use my <a href="http://dfenton.com/DFA/download/Access/FileSearch.html" rel="nofollow">File Search class module</a> to replace it. I've had it in production use since June (when I created it), but just released it more widely and am currently troubleshooting some issues that seem to be related to file names with odd characters.</p>
http://stackoverflow.com/questions/432638/why-do-the-records-get-deleted-in-an-access-database-when-i-open-the-file-in-acce/1752045#17520450Answer by David W. Fenton for Why do the records get deleted in an access database when I open the file in access? David W. Fenton2009-11-17T21:42:28Z2009-11-17T21:42:28Z<p>This is an old question and I don't know if the original poster is still around, but something that didn't occur to me at the time I originally read the question was that perhaps the C# app is using a transaction to insert the data and is not committing it. If that were the case, the data would be visible in the C# app and would not be there when you opened the file in Access. On the other hand, the data wouldn't be there in a new session of the C# app, either, so this might not be the issue.</p>
http://stackoverflow.com/questions/946441/defining-delimiters-in-vba-for-access/1751846#17518460Answer by David W. Fenton for defining delimiters in vba for accessDavid W. Fenton2009-11-17T21:15:44Z2009-11-17T21:15:44Z<p>It's customary for this kind of data to use fixed-length fields, so that you'd allocate, say, 4 characters to the Order Number and five for the Lot Number, so that this:</p>
<pre><code> 0961A1450
</code></pre>
<p>Would be parsed:</p>
<pre><code> Order Number: Left("0961A1450", 4)
Lot Number: Mid("0961A1450", 5, 5)
</code></pre>
<p>The only reason to waste space on delimiters is when the data is variable length. I'd probably allocate 5 characters to the order number and 6 to the lot number for future proofing (and pad appropriately). For instance, the example would be encoded as:</p>
<pre><code> 00961A01450
</code></pre>
<p>...and you'd probably want to parse it this way in order to strip out the leading zeroes:</p>
<pre><code> Order Number: Val(Left("00961A01450", 5))
Lot Number: Mid("00961A01450", 6, 1) & CStr(Val(Mid("00961A01450", 7, 5)))
</code></pre>
<p>After all that, it does seem like delimiters would be easier, but I've never encountered barcode data that used them. If you're only encoding two pieces of data, it could be much easier, as you'd allocate the first N places to your first piece of data, and everything after that would be your other piece, and it could be any length.</p>
http://stackoverflow.com/questions/645861/disable-warning-you-copied-a-large-amount-of-data-onto-the-clipboard/646835#6468351Answer by David W. Fenton for Disable warning: You copied a large amount of data onto the clipboardDavid W. Fenton2009-03-14T22:16:09Z2009-11-17T20:57:11Z<p>In my experience, you only get this message when you close an application. Are you closing Excel before returning to Access? If so, don't close it and see if you no longer get the message.</p>
<p>EDIT after trying instructions for producing the error:</p>
<p>The only way to avoid the error message is to turn off notifications before entering design view, as in:</p>
<pre><code> DoCmd.SetWarnings False
</code></pre>
<p>And you'd want to turn it back on after you are done with your editing.</p>
<p>But there's no place to run this code, since you're just using the Access UI to edit a query.</p>
<p>I don't quite understand <em>why</em> this warning is considered a problem. Maybe you're pasting, going back to design view, changing criteria, running again, pasting again? If so, turning SetWarnings off might do the trick.</p>
<p>If you wanted it to happen automatically, you could conceivably use the Screen.ActiveDatasheet object to do this. What you'd want to do is write a function:</p>
<pre><code> Public Function ChangeWarnings(bolSetting As Boolean) As Boolean
DoCmd.Setwarnings bolSetting
End Function
</code></pre>
<p>...then when you open your query in datasheet view, in the Immediate window, type these two lines:</p>
<pre><code> Screen.ActiveDatasheet.OnActivate = "=ChangeWarnings(False)"
Screen.ActiveDatasheet.OnDeactivate = "=ChangeWarnings(True)"
</code></pre>
<p>You could also certainly write code that sets this up for you.</p>
<p>One note -- it doesn't "stick" for the Screen.ActiveDatasheet object when opening or closing a different one. It applies only to the Datasheet that is active when you assign the event actions.</p>
http://stackoverflow.com/questions/1740990/how-can-i-add-a-button-to-an-access-report-to-export-it-to-excel-pdf/1746412#17464121Answer by David W. Fenton for How can I add a button to an Access report to export it to Excel / PDF?David W. Fenton2009-11-17T03:31:43Z2009-11-17T03:31:43Z<p>Christian has suggested a command button on a form, but you could also create a toolbar for the report with a button on it that would export the report to Excel. But as Tony says, the results are going to be ugly.</p>
<p>I would say that more useful would be a button that exports the data displayed in the report to an Excel spreadsheet. Formatting wouldn't be as pretty, but it would be much more useful and manipulable. For that, you'd use DoCmd.TransferSpreadsheet and a saved Query as your export source (equivalent to the Recordsource of the report).</p>
http://stackoverflow.com/questions/1741221/how-to-extract-characters-from-a-korean-string-in-vba/1746404#17464040Answer by David W. Fenton for how to extract characters from a Korean string in VBADavid W. Fenton2009-11-17T03:28:45Z2009-11-17T03:28:45Z<p>I assume you got what you needed, but it seems rather convoluted. I don't know anything about this, but recently did some investigating of handling Unicode, and looked into all the string Byte functions, such as LeftB(), RightB(), InputB(), InStrB(), LenB(), AscB(), ChrB() and MidB(), and there's also StrConv(), which has a vbUnicode argument. These are all functions that I'd think would be used in any double-byte context, but then, I don't work in that environment so might be missing something very important.</p>
http://stackoverflow.com/questions/1733646/hide-a-column-programmatically-in-ms-access/1736084#17360844Answer by David W. Fenton for Hide a column programmatically in MS-AccessDavid W. Fenton2009-11-15T00:15:36Z2009-11-15T23:33:02Z<p>Controls do not have a "hidden" property (no objects in Access have a hidden property). They do have a .Visible property.</p>
<p>For future reference, I suggest you familiarize yourself with the Object Browser in the VBE -- open the VBE and hit F2. You can then restrict your search to the individual libraries used in your project. It does take a while to get to the point where you understand the object model, though.</p>
<p>Also, you can rely on Intellisense to learn the properties/methods of an object, so in the code of the form you're working with, you can type "Me.MyTextBox." and the Intellisense dropdown will show you all the properties and methods of that particular control. It doesn't work for a generic control variable (as in your code) because different control types have different properties.</p>
<p>And, of course, the properties sheet gives the names of the properties, even though in code they don't always use the same orthography (usually they are the same with spaces removed).</p>
<p>Also, there are differences in how you might want to do this depending on whether it's a regular form or a datasheet form. In a datasheet, your controls also have .ColumnHidden and .ColumnWidth properties (setting those in any view other than datasheet view has no effect, and neither of those properties are available in the standard property sheet, but changes to them are retained when you save the form).</p>
http://stackoverflow.com/questions/1732644/copy-data-from-lookup-column-with-multiple-values-to-new-record-access-2007/1736285#17362852Answer by David W. Fenton for Copy data from lookup column with multiple values to new record Access 2007David W. Fenton2009-11-15T01:39:31Z2009-11-15T01:39:31Z<p>I would recommend against using multivalue fields for precisely the reason you're running into, because it's extremely complex to refer to the data stored in this simple-to-use UI element (and it's for UI that it's made available, even though it's created in the table design). </p>
<p>From your mention of "ItemsSelected," you seem to be assuming that you access the data in a multivalue field the same way you would in a multiselect listbox on a form. This is not correct. Instead, you have to work with it via a DAO recordset. <a href="http://msdn.microsoft.com/en-us/library/bb258183.aspx" rel="nofollow">The documentation for working with multivalue fiels</a> explains how to do it in code, something like this:</p>
<pre><code> Dim rsMyField As DAO.Recordset
Set rsMyField = Me.Recordset("MyField").Value
rsChild.MoveFirst
Do Until rsChild.EOF
Debug.Print rsChild!Value.Value
rsChild.MoveNext
Loop
rsChild.Close
Set rsChild = Nothing
</code></pre>
<p>Now, given that you can usually access the properties of a recordset object through its default collections, you'd expect that Me.Recordset("MyField").Value would be returning a recordset object that is navigable through the default collection of a recordset, which is the fields collection. You'd think you could do this:</p>
<pre><code> Me.Recordset("MyField").Value!Value.Value
</code></pre>
<p>This should work because the recordset returned is a one-column recordset with the column name "Value" and you'd be asking for the value of that column.</p>
<p>There are two problems with this:</p>
<ol>
<li><p>it doesn't actually work. This means that Me.Recordset("MyField").Value is not reallly a full-fledged recordset object the way, say, CurrentDB.OpenRecordset("MyTable") would be. This is demonstrable by trying to return the Recordcount of this recordset:</p>
<pre><code>Me.Recordset("MyField").Value.Recordcount
</code></pre>
<p>That causes an error, so that means that what's being returned is not really a standard recordset object.</p></li>
<li><p>even if it <em>did</em> work, you'd have no way to navigate the collection of records -- all you'd ever be able to get would be the data from the <em>first</em> selected value in your multivalued field. This is because there is no way in this shortcut one-line form to navigate to a particular record in any recordset that you're referring to in that fashion. A recordset is not like a listbox where you can access both rows and columns, with .ItemData(0).Column(1), which would return the 2nd column of the first row of the listbox.</p></li>
</ol>
<p>So, the only way to do this is via navigating the child DAO recordset, as in the code sample above (modelled on that in the cited MSDN article).</p>
<p>Now, you could easily write a wrapper function to deal with this. Something like this seems to work:</p>
<pre><code> Public Function ReturnMVByIndex(ctl As Control, intIndex As Integer) As Variant
Dim rsValues As DAO.Recordset
Dim lngCount As Long
Dim intRecord As Integer
Set rsValues = ctl.Parent.Recordset(ctl.ControlSource).Value
rsValues.MoveLast
lngCount = rsValues.RecordCount
If intIndex > lngCount - 1 Then
MsgBox "The requested index exceeds the number of selected values."
GoTo exitRoutine
End If
rsValues.MoveFirst
Do Until rsValues.EOF
If intRecord = intIndex Then
ReturnMVByIndex = rsValues(0).Value
Exit Do
End If
intRecord = intRecord + 1
rsValues.MoveNext
Loop
exitRoutine:
rsValues.Close
Set rsValues = Nothing
Exit Function
End Function
</code></pre>
<p>Using that model, you could also write code to concatenate the values into a list, or return the count of values (so you could call that first in order to avoid the error message when your index exceeded the number of values).</p>
<p>As cool as all of this is, and as nice as the UI that's presented happens to be (it would be really nice if they'd added selection checkboxes as a type for a multiselect listbox), I'd still recommend against using it precisely because it's so much trouble to work with. This just takes the problem of the standard lookup field (see <a href="http://www.mvps.org/access/lookupfields.htm" rel="nofollow">The Evils of Lookup Fields in Tables</a>) and makes things even worse. Requiring DAO code to get values out of these fields is a pretty severe hurdle to overcome with a UI element that is supposed to make things easier for power users, seems to me.</p>
http://stackoverflow.com/questions/1731717/ms-access-db-over-network-share/1736106#17361061Answer by David W. Fenton for MS Access db over network shareDavid W. Fenton2009-11-15T00:23:42Z2009-11-15T00:23:42Z<p>This is not something I have experience with (I don't consider Jet/ACE to be an appropriate data store for a website), but I know a lot about Jet/ACE.</p>
<p>The fact that when you set to Read-only you get a connection suggests that the user the web server is running as lacks write permission on the file you're opening (or, more likely, for the folder it's in and/or the share that makes it available over the network). A read-only connection from a single user won't need to create an LDB file (the record-locking file). If the web server user doesn't have CHANGE permission on the folder the MDB/ACCDB is stored in, it won't be able to create the LDB file, and thus won't be able to edit the file.</p>
<p>Also, keep in mind that all operations with Jet/ACE utilize a username. Transparently it will use the default admin account with no password, but maybe you've attempted to provide some other username/password pair. In that case, it could be that you're using the wrong workgroup file, or a different one than you assume is appropriate.</p>
http://stackoverflow.com/questions/1728901/access-form-to-run-query-and-display-results/1731771#17317710Answer by David W. Fenton for access form to run query and display resultsDavid W. Fenton2009-11-13T20:42:15Z2009-11-13T20:42:15Z<p>Based on the answers, I guess don't I understand the question. It sounds like the OP has a DML query (or "action query" in Access terms) that modifies data and wants to display the results in a form. The current answers explain how to display the results, but not how to run the query.</p>
<p>So, here's an answer based on my interpretation of the question.</p>
<p>First, create a continuous or datasheet form that is bound to the results.</p>
<p>That's the easy part. The "hard" part is executing the SQL to do the updates the results of which you're going to display. You don't give any context for where you're launching this from, nor how you determine which particular records to update, so I'm going to give two fairly generic answers.</p>
<p>Method 1. create a macro with two parts:</p>
<ol>
<li><p>the first command is OpenQuery and you'd supply the name of your saved query as the argument.</p></li>
<li><p>the second command is OpenForm that opens the form you created to display the results.</p></li>
</ol>
<p>Now, I haven't supplied any method for executing the macro, but that's because you didn't supply any context.</p>
<p>Method 2. on a form from which it is appropriate to initiate this process:</p>
<ol>
<li><p>create a comand button.</p></li>
<li><p>use the OnClick event to perform the desired action.</p>
<p>a. use the macro you wrote with Method 1 as the argument for the OnClick event of the command button.</p>
<p>b. write VBA code to do both tasks:</p>
<pre><code>CurrentDB.Execute "MySaveQueryThatUpdatesData", dbFailOneError
DoCmd.OpenForm "MyFormThatDisplaysTheResults"
</code></pre></li>
</ol>
<p>But this is all really begging the questions, as this is all pretty darned elementary. The hard part of this kind of thing comes about when your SQL update is operating on a subset of records and you need to display only that subset of records.</p>
<p>It is very likely that your original query will be keyed to the original context. Say, for instance, that you want to launch the entire process from a form that displays Companies and your SQL operates on the Employees of the currently displayed Company record. In that case, you'd want an update of the Employees table limited to the Company you're currently viewing. There are two ways to do that:</p>
<ol>
<li><p>use a reference to the CompanyID in the Company form in the WHERE clause of your saved QueryDef:</p>
<pre><code>UPDATE Employees
SET [blah, blah, blah]
WHERE Employees.CompanyID = Forms!Company!CompanyID
</code></pre></li>
<li><p>instead of using a saved QueryDef hardwired to require that your Company form be open for it to work, write the SQL on the fly in the code behind your command button:</p>
<pre><code>Dim strSQL As String
strSQL = "UPDATE Employees "
strSQL = strSQL & "SET [blah, blah, blah] "
strSQL = strSQL & "WHERE Employees.CompanyID = "
strSQL = strSQL & Me!CompanyID
CurrentDB.Execute strSQL, dbFailOneError
</code></pre></li>
</ol>
<p>Now, for the second part of it, you need to open the results form to display just those records that have been updated. That means you want the form opened with the same WHERE clause as was used for the update. There are two methods for this, too.</p>
<ol>
<li><p>the first is very much like the the first method for performing the update, i.e., hardwiring the reference to the Company form in the WHERE clause of your results form's Recordsource's WHERE clause. So, the Recordsource for your results form would look like this:</p>
<pre><code>SELECT Employees.*
FROM Employees
WHERE Employees.CompanyID = Forms!Company!CompanyID
</code></pre>
<p>Then you'd open the results form the same way as originally stated:</p>
<pre><code>DoCmd.OpenForm "MyFormThatDisplaysTheResults"
</code></pre></li>
<li><p>the second approach avoids hardwiring the Recordsource of your results form to require the Company form be open, and instead, you just supply the WHERE clause (without the WHERE keyword) in the appropriate parameter of the OpenForm command:</p>
<pre><code>DoCmd.OpenForm "MyFormThatDisplaysTheResults", , , "[CompanyID] = " & Me!CompanyID
</code></pre>
<p>Learning to do this is one of the most powerful and easy aspects of using Access, since you can create a form that returns all the records in a table, and then open that form and display subsets of data by supplying the appropriate WHERE parameter in the OpenForm command. Keep in mind that Access applies these very efficiently, that is, it doesn't open the form and load the entire recordset and then apply the WHERE argument to it, but applies the WHERE parameter to the recordsource <em>before</em> any records are loaded in the form.</p></li>
</ol>
<p>Now, a consideration of what is the best way out of all the alternatives:</p>
<p>I would write the SQL on the fly for the update and use the WHERE parameter of the OpenForm command to do the filtering. So, in one of my apps, the code behind the OnClick event of your command button on the Company form would look like this:</p>
<pre><code> Dim strSQL As String
strSQL = "UPDATE Employees "
strSQL = strSQL & "SET [blah, blah, blah] "
strSQL = strSQL & "WHERE Employees.CompanyID = "
strSQL = strSQL & Me!CompanyID
CurrentDB.Execute strSQL, dbFailOneError
DoCmd.OpenForm "MyFormThatDisplaysTheResults", , , "[CompanyID] = " & Me!CompanyID
</code></pre>
<p>Now, because of the dbFailOnError argument for CurrentDB.Execute, you'd need an error handler. And if you want to know how many records where changed, you'd need to use a database object other than CurrentDB, so more likely, I'd do it like this:</p>
<pre><code>On Error GoTo errHandler
Dim strSQL As String
Dim db As DAO.Database
strSQL = "UPDATE Employees "
strSQL = strSQL & "SET [blah, blah, blah] "
strSQL = strSQL & "WHERE Employees.CompanyID = "
strSQL = strSQL & Me!CompanyID
Set db = CurrentDB
db.Execute strSQL, dbFailOneError
Debug.Print "Updated " & db.RecordsAffect & " Employee records."
DoCmd.OpenForm "MyFormThatDisplaysTheResults", , , "[CompanyID] = " & Me!CompanyID
exitRoutine:
Set db = Nothing
Exit Sub
errHandler:
MsgBox Err.Number & ": " & Err.Description, _
vbExclamation, "Error in Forms!Company!cmdMyButton.OnClick()"
Resume exitRoutine
</code></pre>
<p>My reason for constructing the SQL on the fly in the command button's OnClick event is so that it's very easy to add in more criteria should they become necessary. I like to avoid overloading my saved QueryDefs with dependencies on UI objects, so I will tend to write SQL like this on the fly in the place where it is being used.</p>
<p>Some people worry that this degrades performance because on-the-fly SQL is not optimized by your database engine's query optimizer. This may or may not be true. Many server database engines cache optimization plans of on-the-fly SQL commands, and because of the way Jet/ACE parses a SQL command like this and hands it off to the server, it is likely to be sent as a generic stored procedure. Because of that, a server like SQL Server will cache that query plan and be able to re-use it each time you execute the on-the-fly SQL, even if each time it has a different CompanyID value.</p>
<p>With a Jet/ACE back end, there is no caching like this, but the difference in execution time between the optimized and unoptimized SQL is going to be very small in all cases where you're not operating on really large datasets. And even updating, say, 1000 employee records is not something that counts as a large dataset for Jet/ACE. So I think there is seldom enough of performance hit from writing SQL on the fly to justify moving it to a saved QueryDef. However, on a case-by-case basis, I might very well choose to do so -- it would just not be my first choice.</p>
<p>The more significant objection, though, is that you'll have a bunch of SQL strings littered throughout your code, and this can become a maintenance nightmare. I don't know what to say about that, except that there are ways to handle that such that you eliminate as much duplication as possible, either by saving a base SELECT query as a saved QueryDef and using that such that the SQL you construct in code is unique only the parts specific to the action being taken in that particular case, or by using defined constants in your code that hold the base SQL statements that you use (such that you only have to change the definition of the constant to change the results anywhere it is used).</p>
<p>That's fairly weak, but with Access, I don't see any alternative. If you save every SQL statement as a QueryDef you end up with a different kind of unmanageable mess with too many saved queries, each slightly different from the other, and it can be just as duplicative as SQL repeated in code.</p>
<p>But that's another issue, and I probably shouldn't make this any longer by trying to resolve it here!</p>
http://stackoverflow.com/questions/1724791/access-2007-one-to-two-columns-referential-integrity/1725719#17257194Answer by David W. Fenton for Access 2007 one-to-two columns referential integrityDavid W. Fenton2009-11-12T22:01:17Z2009-11-12T22:01:17Z<p>To add two individual relationships from one table to two different fields in another, you need to have multiple instances of the parent table in the relationship window.</p>
<p>So, you'd add your Users and Documents table to the relationships window and create the first relationship. Then add the Users table to the relationship window a second time (it will be aliased as Users_1), and then add the second relationship from this aliased copy. </p>
<p>This is completely consistent with the same way you'd define two such joins in the QBE, so I'd say it's not problematic at all. But it's not necessarily obvious!</p>
http://stackoverflow.com/questions/1710807/vb-script-and-access/1712652#17126520Answer by David W. Fenton for VB Script and AccessDavid W. Fenton2009-11-11T02:36:10Z2009-11-11T02:36:10Z<p>It is generally not advisable to try to run an app that has user interface without being logged on -- sometimes it works, sometimes it doesn't.</p>
<p>However, you're in luck, as you're likely to be able to move all your VBA code out of Access and into your vbScript, which is quite compatible with VBA. You may have to make some minor changes because it's basically late binding, but it works quite well.</p>
<p>As a start, try porting your VBA code to vbScript and then post back here for help with what doesn't work.</p>
http://stackoverflow.com/questions/1866520/forcing-a-datatype-in-ms-access-make-table-query/1866545#1866545Comment by David W. Fenton on Forcing a datatype in MS Access make table queryDavid W. Fenton2009-12-10T22:02:28Z2009-12-10T22:02:28Z"I have created a query in MS-Access" seems pretty definitive to me -- the OP is using the Access UI to manipulate data. There is no mention of ASP or PHP or any other environment in which this SQL is going to be used. So, your caveats about Nz() are valuable, but entirely tangential to the question being asked, and thus not worthy of my upvote.http://stackoverflow.com/questions/1878952/will-the-sql-queries-i-run-in-ms-access-also-work-on-mysql-without-any-changes/1879861#1879861Comment by David W. Fenton on will the sql queries i run in ms-access also work on mysql without any changes ?David W. Fenton2009-12-10T21:47:20Z2009-12-10T21:47:20ZI'm voting the question up because the gist of it is correct. The criticism of Jet/ACE is completely unwarranted, though.http://stackoverflow.com/questions/1878952/will-the-sql-queries-i-run-in-ms-access-also-work-on-mysql-without-any-changes/1879861#1879861Comment by David W. Fenton on will the sql queries i run in ms-access also work on mysql without any changes ?David W. Fenton2009-12-10T21:46:31Z2009-12-10T21:46:31ZMySQL could easily conform to SQL 92, because it was created some time after the SQL 92 standard was proposed and accepted. Also, its early versions omitted all sorts of standard SQL constructs, e.g., foreign-key constraints, making it a helluva lot easier to conform, since it was implementing only a subset of SQL functionality. Access/Jet was created at a time that SQL 92 was still in the proposal stage. A lot of database engines that predate SQL 92 incompletely implement it. This is a fact of life in dealing with the reality of backward compatibility and SQL dialects. http://stackoverflow.com/questions/1878298/remove-authentication-from-microsoft-accessComment by David W. Fenton on Remove Authentication From Microsoft AccessDavid W. Fenton2009-12-10T21:40:03Z2009-12-10T21:40:03ZI really do not understand the crazies who want any question about Access that doesn't explicitly involve code or SQL moved to SuperUser. This is ridiculous -- the question here is something any programmer could encounter, thus, from my point of view, it certainly belongs as a question on a programming website.http://stackoverflow.com/questions/1878298/remove-authentication-from-microsoft-access/1879890#1879890Comment by David W. Fenton on Remove Authentication From Microsoft AccessDavid W. Fenton2009-12-10T21:38:35Z2009-12-10T21:38:35ZACE still supports it, since when working with MDBs in A2007, the ACE is doing the data manipulation. It is only the ACCDB format that doesn't support it.http://stackoverflow.com/questions/1880701/what-are-the-various-other-programs-using-which-i-can-connect-to-odbc-database-beComment by David W. Fenton on what are the various other programs using which i can connect to odbc database besides ms-access.David W. Fenton2009-12-10T20:57:28Z2009-12-10T20:57:28ZStop importing the MySQL data into your Access database and your problem will permanently disappear.http://stackoverflow.com/questions/1880458/how-do-i-query-a-property-on-a-record-source-for-a-access-2002-report-in-code/1880667#1880667Comment by David W. Fenton on How do I query a property on a record source for a Access 2002 report in code?David W. Fenton2009-12-10T20:48:44Z2009-12-10T20:48:44Z@GuinnessFan: Just tested, and your correction doesn't help. That fact is that, in reports since A2000, you can't refer to fields in the report's underlying recordset directly. You have to put an invisible control on the report and refer to the control. This worked in A97 and I don't know why this feature has been removed -- I expect it's an accident, as it's not something one does very often, as I didn't know this was the case until a couple of weeks ago (because I never do it!).http://stackoverflow.com/questions/1883214/running-4-make-table-queries-on-a-time-schedule-with-no-human-interaction/1883793#1883793Comment by David W. Fenton on Running 4 make table queries on a time schedule with no human interactionDavid W. Fenton2009-12-10T20:44:04Z2009-12-10T20:44:04ZAlso, temp tables should not be stored in the back end or in the front end, but in a separate temp database.http://stackoverflow.com/questions/1883214/running-4-make-table-queries-on-a-time-schedule-with-no-human-interaction/1883303#1883303Comment by David W. Fenton on Running 4 make table queries on a time schedule with no human interactionDavid W. Fenton2009-12-10T20:43:16Z2009-12-10T20:43:16ZYou should never turn of SetWarnings. For a link to the code for my SQLRun function that wraps up a SQL Execute with error handling (and other features) see <a href="http://stackoverflow.com/questions/1872554/ms-access-how-to-automatically-select-yes-in-warning-message-boxes/1877234#1877234" rel="nofollow" title="ms access how to automatically select yes in warning message boxes">stackoverflow.com/questions/1872554/…</a> .http://stackoverflow.com/questions/1827047/vba-code-stops-working/1863319#1863319Comment by David W. Fenton on VBA Code Stops WorkingDavid W. Fenton2009-12-09T22:17:00Z2009-12-09T22:17:00Z@Robert Harvey, Tony and others: since the post in question has apparently been deleted, perhaps the comments should be deleted as well?http://stackoverflow.com/questions/1870597/mysteriously-changing-report-format-access-mailing-labels-reportComment by David W. Fenton on Mysteriously changing report format -- Access mailing labels reportDavid W. Fenton2009-12-09T22:14:49Z2009-12-09T22:14:49ZIs Name Autocorrect turned OFF in this database? It should be in all databases, as its nickname, i.e., Name Autocorrupt, is more descriptive of what it does.http://stackoverflow.com/questions/1865147/can-i-combine-these-update-queries-into-one-query/1865161#1865161Comment by David W. Fenton on can i combine these update queries into one query David W. Fenton2009-12-09T22:12:38Z2009-12-09T22:12:38ZIf you'd take an overview of @silverkid's posts over the last week, you'll see this question is a variation on several others, and that his sample data doesn't seem to be storing the string "Null" anywhere. It would be hard to guess from this one question whether the example query was correct for the data involved or if it just had rookie mistakes. From the context of the other posts, it seemed obvious to me that he really wasn't looking for the literal string "Null".http://stackoverflow.com/questions/1873972/viewing-sql-in-an-access-databaseComment by David W. Fenton on Viewing SQL in an access database?David W. Fenton2009-12-09T22:09:14Z2009-12-09T22:09:14ZWhat is the context in which you want to see them? That is, assuming that just viewing them in MS Access is insufficient, what is your programming environment? And what does MySQL have to do with the question?http://stackoverflow.com/questions/1872430/how-to-compare-todays-date-with-oledb-date-please-help/1873846#1873846Comment by David W. Fenton on how to Compare todays date with oledb date?? please helpDavid W. Fenton2009-12-09T22:05:35Z2009-12-09T22:05:35ZWhy are you suggesting the use of Now() when the question explicitly states that the granularity is whole days?http://stackoverflow.com/questions/1866520/forcing-a-datatype-in-ms-access-make-table-query/1866545#1866545Comment by David W. Fenton on Forcing a datatype in MS Access make table queryDavid W. Fenton2009-12-09T21:59:45Z2009-12-09T21:59:45Z@onedaywhen: while it's good to have the caveat about Nz() not working from outside Access, it's really a tangential issue when the question is about doing this from <i>within</i> Access.