1
vote
4answers
54 views
Determine existence of results in jet SQL?
In Jet, I want to test if certain conditions return any results.
I want a query which returns exactly one record: "true" if there are any results, "false" otherwise.
This works in MS SQL:
SELECT
…
2
votes
3answers
43 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 will be either VB or …
0
votes
3answers
55 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 Gen Pro
The app is a …
1
vote
3answers
49 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 a date (with all …
0
votes
0answers
41 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();
string strConn = …
1
vote
4answers
74 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, generating a SQL …
2
votes
3answers
295 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 the row with the …
0
votes
0answers
40 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 'Microsoft Jet Provider 4.0' …
0
votes
1answer
29 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 html table on the fly. …
0
votes
8answers
180 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.Connection
Dim RST As …
1
vote
3answers
174 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 someone tried …
0
votes
3answers
39 views
Need JET 4.0 Drivers
I am using an ExcelProvider with Microsoft.Jet.OLEDB.4.0 and am getting the Cannot Find Installable ISAM from the production machine. Windows Server 2003.
I've searched and search for this download. …
0
votes
3answers
96 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 Source={0};Extended …
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 string, it should send an …
0
votes
1answer
381 views
JET and ODBC driver missing, can not get data from MDBs
These are MY symptoms: (XP Pro, 32bit)
-Programs that access .mdb databases (aside from Access 2007 itself) can not get any data.
-Using the Data Sources in Visual Studio 2008 to connect to an MDB …
