I want to execute a T-SQL statement with ADO-layer. The sql-statement is like: DECLARE @var TABLE (id int)
I\'m trying to figure out how to speed up this operation. Before I import a record from the text file I first need to see if one exists in the database. If it does exist I\'m going to perform an updat
How does the code below work? I\'ve never seen an UPDATE done this way. I always do it this way: http://www.w3schools.com/sql/sql_update.asp
With \"table names\" I mean just the name of normal (not queries or stuff like that), plain old tables. This is because I\'m working on a project that currently connects to the Jet engine and among ot
I have to write a software that manipulates data from a SQL database. The tables can be huge (> 500,000 lines).
I have a problem with settings of the query execution timeout with TADOQuery, TADOCommand or TADODataSet (I\'ve tried it with each one). I have a tiny application, which connects to the database and p
I am getting the following error: Microsoft OLE DB Provider for O开发者_运维知识库racle: Data type is not supported.
My code in asp classic, doing a mssql database query: rs.pagesize = 1000\' this should enable paging rs.maxrecords = 0\' 0 = unlimited maxrecords
I want to connect to SQL Server Compact Edition 4开发者_如何学C.0 from an old asp-classic site but i always get the error:
I am using VB.NET to query via SQL an Excel spreadsheet using ADO. The general way is like this: SELECT [firstname], [secondname] FROM [Sheet1$]