Hans J. Ellingsgaard
Members-
Content Count
91 -
Joined
-
Last visited
Everything posted by Hans J. Ellingsgaard
-
Best site/source for SQL Server questions?
Hans J. Ellingsgaard replied to Lars Fosdal's topic in Databases
It sounds strange. You should never get a lock on a read only query. If you have many concurrent users, you could have drop of performance, but not locks. -
version control system Version Control System
Hans J. Ellingsgaard replied to Soji's topic in Delphi IDE and APIs
Bitbucket is a great versioning system based on git. You can have 5 users for free, so you can always give it a try. It works well with Sourcetree as a client. It,s also easy to integrate with Jira.- 49 replies
-
- git
- subversion
-
(and 1 more)
Tagged with:
-
any suggestions on how to "lazy load" a BLOB/CLOB from Oracle DB?
Hans J. Ellingsgaard replied to David Schwartz's topic in Databases
You can do it with two queries. Make one query that select's all the fields that you want in the grid (don't use "select *", use the wanted fieldnames instead). Then make another query with a parameter that select's the clob field for one record only. Like this: select [clob field] from [table name] where [Primary Field ID] = :ParameterName Then you open the second query after the first query has entered the wanted record. The parameter will get it's value from the first query. There might be an event on the grid you can use - I don't know the DevEx grid. You can also use the AfterScroll event of the dataset to open the second query. If you use the second approach, you will need to have a delay on the opening of the second query, or it will open after all scrolled records. You can use a timer to have a small delay. Disable it on the BeforeScroll event and enable it on the AfterScroll event. The delay should just be long enough to make shure that it is not triggering while the user is scrolling. -
Delphi Tokyo - Is FDConnection manager broken ? - Need advice connecting MsSQL DB
Hans J. Ellingsgaard replied to Stéphane Wierzbicki's topic in Databases
If your sql server is not on the same machine as your client, it might be that you don't have the right sql driver verison. Look into the ODBC Data Source Administrator for what version of sql driver you have. E.g for a SQL server 2008 you need at least a version 10.00. I'm not sure wich version you need for server 2012, but it is probably at bit higher than that. You can download the correct version from Microsoft. -
General DB access question -- paging query results
Hans J. Ellingsgaard replied to David Schwartz's topic in Databases
Livebingings will not make any difference here. It's the design of your queries, and your database components, that will make all the difference. -
General DB access question -- paging query results
Hans J. Ellingsgaard replied to David Schwartz's topic in Databases
If you get an error that says data field is missing, it's because some of the fields that you excluded from your query are connected to a dataaware component. The easiest way to find that component is to search for the field directly in the dfm file, and there you can see wich component they are assigned to. -
General DB access question -- paging query results
Hans J. Ellingsgaard replied to David Schwartz's topic in Databases
Your problem has nothing to with with Delphi, and C#/.net can not handle it any better. If you are using BDE, you will need to switch to FireDac. FireDac datasets has parameters for how many records to load at a time. A good advice is also not to use 'select * ', but instead use 'select fieldname from'. FireDac is really fast and can easily handle db's with million og records. -
Advice on starting to work with databases
Hans J. Ellingsgaard replied to Yaron's topic in Databases
it was not an assumtion. It's at copy/paste from the sqlite.org webpage. -
Advice on starting to work with databases
Hans J. Ellingsgaard replied to Yaron's topic in Databases
Here is what SQLite says on it's own webpage sqlite.org: Many concurrent writers? → choose client/server If many threads and/or processes need to write the database at the same instant (and they cannot queue up and take turns) then it is best to select a database engine that supports that capability, which always means a client/server database engine. SQLite only supports one writer at a time per database file. Why not choose a DBMS when there are lots of them to choose from for free? You also get extra features like live backup and replication for free. But as stated by someone else before, if you carefully design your interface between your database and restserver, it's not to much work switching database on a later stage. -
Advice on starting to work with databases
Hans J. Ellingsgaard replied to Yaron's topic in Databases
Don't use SQLite in a multiuser enviroment, go for a real RDBMS like Firebird, Interbase etc..