0
votes
Cross-referencing across multiple databases
Have you tried benchmarking what happens if you link from the Access front end to your SQL Server via ODBC and write your SQL as though both tables are local? You could then do a trace on the serve …
1
vote
SQL Server Express / MS Access LINQ Features, Which One to Use?
A Jet back end will work fine for mostly read-only websites, even ones with decent traffic. Michael Kaplan's old website, http://trigeminal.com, u …
1
vote
How to attach DBF file in Access programmatically?
This is only a suggestion, but what about linking to a DBF from Access, then look at the connect string Access uses to get to the data. For this to work with Jet alone, you'll have to have the ISAM …
1
vote
Update linked tables in MS Access Database with C# programatically
If you're coding in C#, then Access is not involved, only Jet. So, you can use whatever method you want to access the data and then code the updates.
I've coded this kind of thing in Access …
1
vote
Pros and cons of the Access database engine. Life after SQLite.
AngryHacker asked:
Q1. Have they resolved the problem where the database would corrupt every now and then.
Er, what?
There was never any corruption problem in properly engin …
0
votes
how to find relationships between tables
I don't believe you need to automate Access to do this. All that's needed, I think, is ADOX. This article shows how to use ADOX to copy relationships in VBA:
…
0
votes
Programmatically managing Microsoft Access Attachment-typed field with C#.NET
Interesting question. I don't use A2007, but have the runtime installed, so I used the Access object browser to see what's in there. I discovered something really odd -- there are two FIELD objects …
-1
votes
Microsoft Access 2007 Connection
Your question is very poorly worded. Access 2007 offers two different file format, the traditional MDB format, and the ACCDB format. If you use MDB format, then you don't need any additional driver …
1
vote
How can I get all the data types specific for a certain version of MS Access or/and every versions of MS Access?
ACEDAO is backwardly compatible with all previous versions of Jet. But the compatibility is provided in different ways. For instance, if you look directly at the object model of ACEDAO, you'll see …
4
votes
C# and Access 2000
If you're having problems with your Jet/ACE back end with the number of records you mentioned, it sounds like you have schema design problems or an inefficiently-structured application.
As …
0
votes
What is the purpose of a DataRelation in a DataSet?
It seems to me that you are confusing referential integrity at the database engine level with a nice feature of the Access UI.
As others have explained, a relationship is about the data, no …
2
votes
Unique naming of photos - GUID vs sequential number
GUIDs in Access have several problems. They are all outlined here:
http://trigeminal.com/usenet/usenet011.asp?1033 …
0
votes
get all source code in mdb file (msaccess) using c#/vbscript
I am a lowly Access programmer and can't say that I understand your question.
So far as I can tell, to get what you want, you're going to have to automate Access via COM -- there is no othe …
1
vote
Read WMF file from db, convert to bitmapped image
You might find the code in Stephen Lebans' sample database illuminating:
Write data in OLE fields to disk
…
3
votes
Have I overextended myself with this project?
I would say chuck whatever you've done in C# and go back to your Access app.
You're building a database front end to a SQL Server back end. Access is perfect for that -- that's its entire r …
