| Thread | Last Post | Replies |
|
| why does a 'select *..." take less time then a 'select <fieldname>...' to update? | 16 Jun 2004 21:53 GMT | 2 |
I have a vb6 application that connects to a FP6 DB. If I use the following the update take less then a second to complete: SQLstr = "select * from orders where jobno = '" & VOrderNo & "'" With tmpRS
|
| INSERT INTO or SELECT progress indicator | 16 Jun 2004 20:43 GMT | 3 |
I'm performing SELECT and INSERT statements using ADO and the connection.execute method. My select statement may return up to 20k rows; is there any way to get a % complete event to fire? Same question with regards to large INSERT INTO statments (such as
|
| How can I limit big recordset returned by SQL server? | 16 Jun 2004 19:26 GMT | 4 |
I'm using VB6, ADO & SQL I'm new to SQL Server and let's say I have a user made a query and the resultset is over 10,000 records. How can I limit the user to retrieve 100 records at a time, the program will retrieve next 100 (101-200) records only
|
| Cannot write to Foxpro Free Table from compiled VB .dll | 16 Jun 2004 18:03 GMT | 1 |
I am trying to insert records to a single Foxpro .dbf file from Visual Basic 6. On a Windows 2003 Server machine it works fine both through the VB IDE and as a compiled dll. On a XP Pro machine it works fine through the VB IDE, but not as a compiled dll. Both machines have
|
| Can I use the SQL "Table" Datatype to pass parameter info from VB? | 16 Jun 2004 17:25 GMT | 5 |
I have recently discovered the "table" datatype that can be used as an input parameter in a stored procedure. I would like to pass a list or array of string values from VB (using ADO) to the SQL Server stored procedure. What VB datatype can I use to assign the values? For instance, ...
|
| HELP ME "with nowait" | 16 Jun 2004 13:27 GMT | 7 |
Hello !! Why "with nowait" does not work property in ADO ??? In this case CREATE proc habibi_ac_test as raiserror('Some message....',10,1) with nowait
|
| Backup and restore feature on VB6 application | 16 Jun 2004 09:48 GMT | 6 |
I've an application developed in VB 6.0 and DB is MS-Access 2000. Now I would like to provide backup and restore feature in the application. That is to say that to create a backup file of the database which can be saved.
|
| Insert Picture from Access | 15 Jun 2004 16:32 GMT | 3 |
I have the following code that runs after a sql string to insert a picture into a picturebox that is stored in an Access table as an OLE image. I keep getting "invalid picture". I am using VB6 and Access 2000. frmA.picLabel1.Picture = rs1("picture")
|
| Sufficient reason to de-normalize a field? | 15 Jun 2004 16:08 GMT | 2 |
One for the gurus: I've got a great database design. Normalized as well as I can in any event. However, I have a form where I save payment information and the payee might be an ad hoc individual -- that is, it may be someone who does not exist in
|
| compile error: | 15 Jun 2004 14:15 GMT | 2 |
I got this compile error: Procedure declaration does not match description of event or procedure having the same name. and the code line is:
|
| Creating Database file w/o Access or SQL | 15 Jun 2004 12:20 GMT | 1 |
When I had VB 6.0 there was a feature that allowed you to create an Access DB file w/o access. I cannot find the same feature in VB.net 2003, and I don't have access to Access or an SQL server. Does anybody know how to do this?
|
| ADODB runtime error | 15 Jun 2004 12:14 GMT | 1 |
I am working with ADODB, and am trying to change the DataSource and DataField properties of two text boxes on the fly. See article: http://support.microsoft.com/default.aspx?scid=kb;en-us;189852 I have the following code:
|
| Multi User in ADO | 15 Jun 2004 12:06 GMT | 1 |
How do I lock a particular record that one user has opened for editing? If I use the pessimistic type, can other users view the record (but not edit it) and return a message telling that another person is editing the record, or does this type lock the record such that it is ...
|
| vbscript + odbc | 15 Jun 2004 11:55 GMT | 1 |
I am interested in finding a method to use vbscriptto create an odbc connection to an ACCESS.mdb file. (To replace Start/Control Panel/ODBC/NEW...) thanks
|
| Refresh or Requery methode | 15 Jun 2004 08:05 GMT | 2 |
Who cane explain me the difference between the refresh method of an ADODC and the requery method of the matching AdoDC.Recordset and when it is better to use the requery then the refresh ?
|