1
vote
4answers
41 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 …
2
votes
2answers
113 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 …
0
votes
8answers
121 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
19 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
88 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
14 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
80 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
389 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 …
0
votes
3answers
29 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 searc …
1
vote
2answers
250 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
31 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
70 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 …
0
votes
1answer
242 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 …
0
votes
2answers
50 views
Equivalent of Excel’s NETWORKDAYS function with Jet ADO
Excel's NETWORKDAYS function returns the net working days between two dates. Is there a way of replicating this when connecting to a Jet database via ADO?
2
votes
7answers
139 views
What is the Microsoft Jet database and is it appropriate for a small app with sensitive information?
Hi all,
I'm planning a new ASP.NET project that will become a product that is installed by techinical staff that work in various companies. The program will be storing sensitive i …
