Forum: Visual Basic 4 / 5 / 6 Dec 4th, 2008 |
| Replies: 8 Views: 1,568 Just got this far. SELECT COUNT(*) FROM CLEAN_MILE_DUPES = 0. No error, it just went to the next line. This is on *my* machine! <going to go tear out my hair>
I want your code to work for... |
Forum: Visual Basic 4 / 5 / 6 Dec 4th, 2008 |
| Replies: 8 Views: 1,568 I'm debugging right now, and of course it's working fine on my machine.
One of the other databases didn't have 0 records in the milestone table, it just had about 200,000 less records than it... |
Forum: Visual Basic 4 / 5 / 6 Dec 4th, 2008 |
| Replies: 8 Views: 1,568 Here's my milestone table:
CREATE TABLE [CASE_MILESTONE_TEMP] (
[CASE_IDENTIFIER] [varchar] (10) NULL,
[DOCUMENT_TYPE] [varchar] (3) NULL ,
[DOCUMENT_NUMBER] [varchar] (3) NULL,... |
Forum: Visual Basic 4 / 5 / 6 Dec 3rd, 2008 |
| Replies: 8 Views: 1,568 I'm at a complete loss. The SQL above, and two other similar statements, work fine on my machine. Now, instead of just the one statement above giving me problems, all three are. They act as if... |
Forum: Visual Basic 4 / 5 / 6 Dec 3rd, 2008 |
| Replies: 8 Views: 1,568 It's not a connection object error. The first truncate works fine, the first insert doesn't insert anything into the CLEAN table, the second truncate works fine, then there's nothing to be inserted... |
Forum: Visual Basic 4 / 5 / 6 Dec 2nd, 2008 |
| Replies: 8 Views: 1,568 Hello,
I'm using VB6 and SQL Server 2000.
I've got a problem with an insert statement that seems to be randomly failing. Its job is to copy everything from one table into another, removing... |
Forum: Visual Basic 4 / 5 / 6 Oct 29th, 2008 |
| Replies: 1 Views: 1,351 I found the solution:
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_20809772.html
All you have to do is scroll all the way to the bottom of that page to see the... |
Forum: Visual Basic 4 / 5 / 6 Oct 29th, 2008 |
| Replies: 1 Views: 1,351 I have SQL code in my VB6 project for select, insert, and truncate. For example:
strSQL = "SELECT CASE_IDENTIFIER" & vbCrLf _
& " ,DOCUMENT_TYPE" & vbCrLf _
& "... |
Forum: Visual Basic 4 / 5 / 6 Oct 8th, 2008 |
| Replies: 1 Views: 2,127 http://vbnet.mvps.org/ is the best place for finding this kind of code. I found this:
http://vbnet.mvps.org/code/fileapi/createfile_inuse.htm
Hope that helps! |