Tagged Questions
The adoconnection tag has no wiki summary.
3
votes
2answers
1k views
Is Delphi's TADOConnection thread-safe?
I'm writing a Delphi 7 application which needs to access the same SQL Server database from many different threads simultaneously.
Can I use a single shared TADOConnection, or must each thread create ...
2
votes
4answers
353 views
delphi adoconnection econvert error
I have the following code wich is raising an EConvertError - "can not assign TAdoConnection to TAdoConnection"
var
wTmpADOConn : TADOConnection;
begin
//
Result := nil;
try
Result ...
2
votes
2answers
504 views
Insert Unicode chars to MySQL with Delphi 2010
Trying to insert values with Unicode Chars into a MySQL-database using Delphi 2010 and TADOConnection with no luck.
Connection with ODBC
Provider=MSDASQL.1;Persist Security Info=False;Data ...
2
votes
2answers
341 views
Ok to use TADOConnection in threads
I have created an TCPip server application. The application has one global TADOConnection. This global ado connection is used both for main thread queries and also within threaded processes.
Is ...
1
vote
1answer
87 views
Sharing database connection with threads, instead of creating new ones
I wanted to check into this before I attempt it. I am working on a couple threads which require fetching data from the database within the threads. Currently, based on all I've seen, I am creating a ...
1
vote
2answers
150 views
Class TADOConnection / TADOTable Not Found
Okay, so my application was working just fine until I decided to clean up the design-time form a bit by creating a DataModule form and moving all database components to it. I'm using Delphi XE2 ...
1
vote
1answer
361 views
adoconnection username and password
i have an adoconnection in my form and use Access 2010 ( accdb database )
i set password in access for my DB
when i try to set this pass to Delphi i have some trouble :
1 : Delphi ask username and ...
0
votes
0answers
112 views
Problems with ado errors connection timeout
I need a code to get a timeout error from a query. I tried the following code but the timeout error was not triggered by the connection. The result of the query is no data without any errors.
Try
...
0
votes
3answers
154 views
Index was out of range on an ADOQuery - Very Random
I am getting Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index randomly emailed through to me on my website. I cannot reproduce this error ...
0
votes
2answers
354 views
Adoconnection asks for userid and password when opened Delphi
I am trying to open an ADOConnection component. The database is in MDB format. I use JET to access it. Whenever I use AdoConnection.Open in my code the window pops up and asks for userid and pass. I ...
0
votes
8answers
587 views
What's wrong with this ASP connection string?
I'm at the end of my rope on this. It should be so simple.
I just need to know what's wrong with this connection string:
dbc.open ("Driver={SQL Server}; Data Source = ServerName; Initial Catalog = ...