0
votes
PHP and MS Access
it looks like a problem with the path seperators. ISTR that you have to pass backslashes not forward slashes
The following works for me - with an MDB file in the webroot called db4
…
0
votes
Access Alter Table “Allow Zero Length”
Ages ago I wanted to do the same and ISTR that it simply wasn't possible from DDL/SQL - but you can do it from VBA by locating the field (table.fields) and setting AllowZeroLength to the required v …
1
vote
@@IDENTITY after INSERT statement always returns 0
I think you need to have the Select @@identity with the first create command - try appending it via ";SELECT @@Identity" and .ExecuteScalar the insert statement
…
0
votes
Boolean column in Microsoft Access and filtering data using linq
As Russ noted it looks like a problem with different representation of booleans.
Try changing the "Where p.active" into "Where p.active <> 0"
…
