2
votes
3answers
33 views
Is Jet database engine included in Windows xp, vista and Windows7?
I need a data store for single-user, read-only access. I need multiple tables, but not related. I also need to do two-column indexing. Seems like Jet is a good choice. Front end wi …
0
votes
3answers
52 views
Scaleable MS Access ASP.NET app
I am constrained by the following, no way around it:
1) Read-Only Data: Microsoft Access
2) JET 4.0 OLDB
3) ASP.NET 2.0
4) Shared Host, very little control.
5) OR Mapper - LLBL Ge …
1
vote
3answers
42 views
Access/jet equivalent of Oracle’s decode
Is there an equivalent for Oracle's decode() in Access (or Jet, for that matter).
The problem I am facing is: I should sort (order) a resultset based basically upon
a status and …
0
votes
0answers
30 views
OleDbException: Too many fields defined
Strange error that just started happening.
I have the following bit of code to read the first sheet of an .xls into a dataset
DataSet myDataSet = new DataSet();
s …
2
votes
2answers
247 views
Autonumber value of last inserted row - MS Access / VBA
I have a JET table with an auto-number as the primary key, and I would like to know how I can retrieve this number after inserting a row. I have thought of using MAX() to retrieve …
1
vote
4answers
64 views
What is the fastest method for importing from the active sheet in Excel to SQL Server?
What is the fastest way to import data into a SQL Server database directly from the active worksheet in Excel?
I have had great success simply looping through the rows and columns …
0
votes
8answers
167 views
VBA: Querying Access with Excel. Why so slow?
I found this code online to query Access and input the data into excel (2003), but it is much slower than it should be:
Sub DataPull(SQLQuery, CellPaste)
Dim Con As New ADODB.Conn …
0
votes
1answer
25 views
formatting results using sql select with jet
I have data in Excel files that I am pulling out using the MS Jet OLEDB provider. The results of my select are being passed into a component that I cannot change to generate an ht …
1
vote
3answers
158 views
How do I escape all special characters in Access Jet SQL?
I'm trying to change a password with a DDL statement like:
CurrentProject.Connection.Execute "ALTER USER barney PASSWORD "[]!@#$%^ oldpassword"
Yes, that's a nasty password, but …
0
votes
0answers
34 views
Why Msjetoledb40.dll is missing in Windows 2008 core - 32 bit and R2 as well?
Hello,
I am working on Windows 2008 core R2 and 32 bit.
While running application in which I am trying to connect to .mdb file by ADODB connection and using provider as 'Microsof …
0
votes
3answers
94 views
Jet Engine - 255 character truncation
Hi,
I'm needing to import an Excel spreadsheet into my program and have the following code:
string connectionString = String.Format(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Sourc …
3
votes
7answers
412 views
CPU Stuck at 100% on Customer PC, any debugging suggestions?
Hi all.
I'm having a dead-end situation with one of the clients using my software. Out of about 40 copies of our product sold (Application programmed in .NET 2.0 using VB.NET 2005 …
1
vote
2answers
266 views
Configure ASP.NET to use x86 on x64 Windows
I am trying to deploy GAL Modifier, which is an ASP.NET website which uses Microsoft Access on a Windows 2003 x64 machine. However there is no JET driver on x64 (see here), so the …
0
votes
2answers
36 views
checking an access file via java and mailing for a specific row
Hello
I need to write a program that checks a access .mdb file and when a specific row is added (say the "name" field column of the newly added a row that contains a specific strin …
1
vote
6answers
82 views
Jet error 3011 when opening a file with 2 “extensions”
I'm having a problem with Jet throwing error 3011 when I try to use it to open a file with 2 "extensions" ("filename.tst.csv").
Run-time error '3011'
The Microsoft Jet dat …
