You are not logged in.
Pages: 1
Hi AB,
after working with Fb+Zeos without problems, now I've to connect mORMot to mssql 2008 in an other project.
After trying Zeos without success (Michael knows this problems) I've tried to connect with ODBC.
The connection works, but ther are exceptions after CreateMissingTables(0):
Here is a link to this problem.
http://support.microsoft.com/kb/175313/en-us
I hope you could do something to work with mssql.
AFAIR there are these options:
DB.AcquireExecutionMode[execORMWrite] := amBackgroundThread;
DB.AcquireExecutionMode[execORMGet] := amBackgroundThread;
But with this the errors are still there.
Regards,
Daniel
Last edited by danielkuettner (2014-11-14 09:46:16)
Online
I've got it with TOleDBMSSQLConnectionProperties, whithout setting amBackgroundThread. Why it works and ODBC not?
Online
AFAIK our SynDBODBC unit handle one connection per thread, so you should not see such issue.
I suspect there is something wrong with our provider definition.
Nevertheless, for MS SQL OleDB is the #1 mean of connection, and will get the best performance.
Online
Thanks for your answer. With SynOleDB I've getting an unspecified exception. I'll post if I get further problems.
Online
Hi Arnaud,
after reading in the forum I've founded this:
http://synopse.info/forum/viewtopic.php?pid=7317#p7317
Yes, OleDB is officially deprecated.
See our blog article: http://blog.synopse.info/post/2012/02/2 … enjoy-ODBC!
Now I don't understand nothing more.
I've also read your Post here: http://stackoverflow.com/questions/9082 … nt-drivers
I'm a little bit confused about all. All what I want is a multi-threaded connection to mssql-DB with very high performance to serve many clients with one mORMot server, because I don't want many mORMot servers which have to replicate their data.
I also have in mind, that Zeos is the preferred library for DB-connections under mORMot. Therefore I would love to use Zeos for all my DB-Connections.
Best regards,
Daniel
Online
ZDBC is the #1 general purpose DB library to be used with mORMot.
It is much better integrated, faster, Open Source (and free) than the DB.pas based alternatives we support, like FireDAC/UniDAC/DBExpress/BDE.
But our direct SynDBSQlite3, SynOracle and SynOleDB units gives better performance, so may be preferred.
And SynODBC may also be used with most DB, without the need to download and install Zeos.
Currently, SynODBC is not optimized for speed, and works much slower than SynOleDB for connection to MS SQL.
So even if MS did official deprecate OleDB for MS SQL, SynOleDB is the preferred way of connection to MS SQL.
So if you need "multi-threaded connection to mssql-DB with very high performance to serve many clients with one mORMot server", use SynOleDB.
Online
Great news for SynOLEDB
"The OLE DB story at last has clarity. Microsoft has decided to undeprecate (a new word) OLE DB and will be releasing a new OLE DB provider, Microsoft OLE DB Driver for SQL Server (MSOLEDBSQL), in Q1 2018."
Source:
http://www.dbdelta.com/deprecated-sql-s … hnologies/
and
https://blogs.msdn.microsoft.com/sqlnat … ql-server/
Offline
Offline
OLEDB is Windows specific only.
For Linux, You must use ODBC, i guess...
Offline
Pages: 1