Click here to Skip to main content
15,887,083 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: True or false Pin
PIEBALDconsult11-Apr-23 14:25
mvePIEBALDconsult11-Apr-23 14:25 
GeneralRe: True or false Pin
Chris Maunder11-Apr-23 14:51
cofounderChris Maunder11-Apr-23 14:51 
GeneralRe: True or false Pin
peterkmx11-Apr-23 20:36
professionalpeterkmx11-Apr-23 20:36 
GeneralRe: True or false Pin
DrWalter PE12-Apr-23 6:45
professionalDrWalter PE12-Apr-23 6:45 
GeneralRe: True or false Pin
peterkmx12-Apr-23 23:59
professionalpeterkmx12-Apr-23 23:59 
JokeRe: True or false Pin
Jeremy Falcon14-Apr-23 3:40
professionalJeremy Falcon14-Apr-23 3:40 
GeneralRe: True or false Pin
dandy7214-Apr-23 7:38
dandy7214-Apr-23 7:38 
GeneralHow did we write code without the Internet? Pin
Marc Clifton11-Apr-23 7:24
mvaMarc Clifton11-Apr-23 7:24 
Yes, we had 200 lbs of reference manuals, and life was simpler.

I just finished a whole bunch of googling to figure out how to bulk copy an archaic Access DBF file into SQL Server, using .NET 7. My comments in the code show some of the depth of the rabbit hole.

// Need to download the Microsoft Access Database Engine 2010 Redistributable for the 64 bit version of the Microsoft.Jet.OLEDB driver.
// Unless you already have the 32 bit version installed, you can't have both, so you would have to uninstall any 32 bit apps, in my case, Visio and FrontPage!
// This appears to work, from SO: use the provider to "Provider=Microsoft.ACE.OLEDB.12.0;" in connection string.
// But it doesn't because the DBF files are so old, so we're back to using Jet.OLEDB and building the importer app as a 32 bit (x86) app.
// And I finally can import the data!
And yes, I still use FrontPage for article writing and I'll be damned if I'm going to uninstall it and Visio 2010 to install the 64 bit Jet drivers, so now my importer app is in x86 mode.

And stunningly, the .NET SqlBulkCopy thing is working perfectly.

JokeRe: How did we write code without the Internet? Pin
Jeremy Falcon11-Apr-23 8:12
professionalJeremy Falcon11-Apr-23 8:12 
GeneralRe: How did we write code without the Internet? Pin
Marc Clifton11-Apr-23 13:41
mvaMarc Clifton11-Apr-23 13:41 
GeneralRe: How did we write code without the Internet? Pin
MikeD 212-Apr-23 4:57
MikeD 212-Apr-23 4:57 
GeneralRe: How did we write code without the Internet? Pin
trønderen11-Apr-23 8:38
trønderen11-Apr-23 8:38 
GeneralRe: How did we write code without the Internet? Pin
Marc Clifton11-Apr-23 13:38
mvaMarc Clifton11-Apr-23 13:38 
GeneralRe: How did we write code without the Internet? Pin
Mike Hankey11-Apr-23 9:51
mveMike Hankey11-Apr-23 9:51 
GeneralRe: How did we write code without the Internet? Pin
Gary R. Wheeler11-Apr-23 12:45
Gary R. Wheeler11-Apr-23 12:45 
GeneralRe: How did we write code without the Internet? Pin
Nelek11-Apr-23 13:17
protectorNelek11-Apr-23 13:17 
JokeRe: How did we write code without the Internet? Pin
englebart12-Apr-23 15:01
professionalenglebart12-Apr-23 15:01 
GeneralRe: How did we write code without the Internet? Pin
Sander Rossel11-Apr-23 21:31
professionalSander Rossel11-Apr-23 21:31 
GeneralRe: How did we write code without the Internet? Pin
jschell13-Apr-23 6:26
jschell13-Apr-23 6:26 
GeneralRe: How did we write code without the Internet? Pin
Kees van Sighem12-Apr-23 1:27
Kees van Sighem12-Apr-23 1:27 
GeneralRe: How did we write code without the Internet? Pin
Nelek12-Apr-23 11:43
protectorNelek12-Apr-23 11:43 
GeneralRe: How did we write code without the Internet? Pin
atverweij12-Apr-23 2:33
atverweij12-Apr-23 2:33 
GeneralRe: How did we write code without the Internet? Pin
jschell13-Apr-23 6:28
jschell13-Apr-23 6:28 
GeneralRe: How did we write code without the Internet? Pin
atverweij13-Apr-23 6:48
atverweij13-Apr-23 6:48 
GeneralRe: How did we write code without the Internet? Pin
jschell14-Apr-23 11:22
jschell14-Apr-23 11:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.