Search found 2099 matches

by Antaeus
Wed 02 Jul 2008 11:44
Forum: dbExpress driver for SQL Server
Topic: SQL 2005 Native Client Truncates Blob fields
Replies: 1
Views: 3276

pharry wrote:Is there a way to make dbexpress use OLE DB rather than the native client?
This possibility was added in DbxSda 4.25.7. You can setup which provider to use through the VendorLib property of TSQLConnection. For more information see the Readme.html file. You will find it in the DbxSda installation directory.
by Antaeus
Wed 02 Jul 2008 11:04
Forum: dbExpress driver for SQL Server
Topic: Cannot connect through TCP/IP with dbxspda40.dll and d2007
Replies: 3
Views: 3649

Please take a look at this article. if it will not help to cope with the problem, send your registration information to sdac*devart*com. We will send you a test version of the driver.
by Antaeus
Wed 02 Jul 2008 10:56
Forum: Universal Data Access Components
Topic: Can't delete Records in MSSQL 2005
Replies: 4
Views: 4140

Please answer some questions about the problem:
Are you using transactions, locking, or CachedUpdates mode in your application?
Does the problem appear for update/insert operations, or only for delete?
Is the problem reproduced with some of UniDAC demos?

Also supply the following information:
- the exact version of UniDAC. You can see it in the About sheet of TUniConnection Editor;
- the exact version of your IDE;
- the exact version of SQL server and client. You can see it in the Info sheet of TUniConnection Editor.
by Antaeus
Tue 01 Jul 2008 11:56
Forum: dbExpress driver for SQL Server
Topic: File already exists error with SQL Compact 3.5
Replies: 4
Views: 6213

I cannot reproduce this problem. Could you send us the database created with the previous version of the driver and a test application that reproduces this problem? Also specify the exact version of your IDE.
by Antaeus
Tue 01 Jul 2008 10:58
Forum: VirtualDAC
Topic: Aggregates and GroupState in the vt-component?
Replies: 1
Views: 4385

VirtualTable does not support aggregate fields.
What do you mean under 'groupstates'?
by Antaeus
Tue 01 Jul 2008 10:48
Forum: SQL Server Data Access Components
Topic: Help with multithread
Replies: 1
Views: 1745

SDAC includes the Performance demo. It is intended to test the performance of SDAC. Unfortunately, there is no other similar demos in SDAC.
by Antaeus
Tue 01 Jul 2008 10:17
Forum: VirtualDAC
Topic: Why method TVirtualTable. LoadFromFile does not set Active?
Replies: 1
Views: 4420

It is a designed behavior of TVirtualTable.
by Antaeus
Tue 01 Jul 2008 10:08
Forum: SQL Server Data Access Components
Topic: TMsLoader and empty blob-fields
Replies: 1
Views: 1741

Thank you for information. We have reproduced this problem and fixed it. This fix will be included in the next SDAC build.
by Antaeus
Fri 27 Jun 2008 14:56
Forum: dbExpress driver for SQL Server
Topic: Cannot connect through TCP/IP with dbxspda40.dll and d2007
Replies: 3
Views: 3649

Please check connection settings, antiviruses, firewalls, etc.
If this does not help, specify the exact error message text.
by Antaeus
Fri 27 Jun 2008 14:47
Forum: dbExpress driver for SQL Server
Topic: Stored Proc not returning empty strings in new v4.25.9
Replies: 3
Views: 3855

Thank you for information. We have reproduced the problem. The investigation is in progress. As soon as we get more information about the problem we will let you know.
by Antaeus
Thu 26 Jun 2008 08:32
Forum: SQL Server Data Access Components
Topic: Cant get identity after Insert into the view
Replies: 3
Views: 2512

>May be use of IDENT_CURRENT(UpdatingTable) - is better decision?
I think that you should decide by yourself whether of these statements to use.

>@@identity can return identity from another table?
Yes, it can.

> Can I get this script in run-time and append
There is no simple way to do this. You should write this statement at design time.
by Antaeus
Tue 24 Jun 2008 09:25
Forum: SQL Server Data Access Components
Topic: Cant get identity after Insert into the view
Replies: 3
Views: 2512

You should do the following:

1. Place this code in the BeforeUpdateExecute event of your stored procedure

Code: Select all

    if stInsert in StatementTypes then
      Params.ParamByName('idWarehouse').ParamType := ptInputOutput;
2. Replace this line in SQLInsert:

Code: Select all

SET :idWarehouse = SCOPE_IDENTITY()
with this one:

Code: Select all

SET :idWarehouse = @@IDENTITY 
For more information about difference between SCOPE_IDENTITY() and @@IDENTITY you can read in this topic of MSDN.
by Antaeus
Tue 24 Jun 2008 07:09
Forum: SQL Server Data Access Components
Topic: unhandled exception while restoring data using TMSDump
Replies: 2
Views: 3253

I could not reproduce the problem. Try to check the latest build of SDAC (4.50.0.35). If it does not help, send me the dump file by e-mail at sdac*crlab*com. Also specify the exact version of your client. You can see it in the Info sheet of TMSConnection Editor.
by Antaeus
Mon 23 Jun 2008 13:57
Forum: SQL Server Data Access Components
Topic: locking multible DB Entries
Replies: 1
Views: 1543

I can suggest running queries withing a transaction with the appropriate isolation level (e.g. ilIsolated). For more information about isolation levels see the TCustomMSConnection.IsolationLevel topic in SDAC help.
by Antaeus
Mon 23 Jun 2008 06:48
Forum: SQL Server Data Access Components
Topic: Missing provider on thin client
Replies: 1
Views: 1556

Depending on connection settings you may need to install SQL OLE DB provider, SQL Native Client provider, or SQL Server Compact edition version 3.1 or 3.5.
Please specify the server version you are working with, class of your connection (TMSConnection/TMSCompactConnection), and values of the Provider/CompactVersion option.