1
vote
2answers
34 views
How can I import an Excel spreadsheet on a 64 bit OS using ASP.NET?
I wrote an ASP.NET page that imported data from an Excel spreadsheet without any problems. Then I moved it to the server and found out that it didn't work on a 64 bit OS. After some Googling I found …
0
votes
0answers
18 views
NHibernate + Jet Replica Database - Exception thrown when committing transaction (”a different object with the same identifier value was already associated with the session).
I have an application where we're using NHibernate and the NHibernate Jet Driver to open existing .MDB files (Access 2003 / Jet 4.0 databases), read some information and add some new records.
…
1
vote
3answers
56 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
…
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 …
2
votes
3answers
44 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 …
2
votes
3answers
305 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 …
1
vote
3answers
54 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 …
1
vote
4answers
80 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 …
0
votes
0answers
42 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 = …
0
votes
8answers
186 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 …
0
votes
1answer
31 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. …
1
vote
3answers
179 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 …
3
votes
7answers
417 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), about 2 get …
0
votes
3answers
101 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
0answers
41 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' …
