Search found 140 matches
- 21.12.2011, 17:34
- Forum: ZDBC (ZEOS Database Connectivity)
- Topic: What's the best way of check the table structure?
- Replies: 16
- Views: 5552
papelhigienico , Some time ago I tried this technique with storing data inside app and recreate table when necessary but this didn't work well for me: - it's complicated to maintain code for multiple databases. - if end users can change database structure you have 1001 problem e.g: It's enough to c...
- 21.12.2011, 17:03
- Forum: PostgreSQL
- Topic: Postgres + doCalcDefaults + Bigserial Column = 2 on 2 seq.!
- Replies: 27
- Views: 8248
- 14.12.2011, 10:55
- Forum: ZDBC (ZEOS Database Connectivity)
- Topic: What's the best way of check the table structure?
- Replies: 16
- Views: 5552
- 01.06.2011, 17:45
- Forum: 6.6 - stable
- Topic: Save/load dataset and table to/from memory stream
- Replies: 7
- Views: 3971
IMO, there's no simple way to store data to a stream. This task will probably need some component coding. Loading from stream into component is another story (nearly impossible). I still can't imagine why would you need this? If you want to store data locally for fast lookup and offline work, take a...
- 30.05.2011, 14:56
- Forum: 6.6 - stable
- Topic: Save/load dataset and table to/from memory stream
- Replies: 7
- Views: 3971
- 30.05.2011, 14:50
- Forum: 6.6 - stable
- Topic: Delphi 2005 and Firebird 2.5 utf8 - malformed string
- Replies: 1
- Views: 1325
Zconnection codepage param is client codepage so you will need something like: ZConnection.Params.Add('codepage=win1252') or, more generic: var CPCode: cardinal sCP: string; begin cpcode := GetACP(); case cpcode of 1250,1251,1252,1256,1258: sCP := 'WIN' + IntToStr(CPCode); some_other ACP: sCP := 'so...
- 27.05.2011, 14:06
- Forum: 6.6 - stable
- Topic: [Solved] Zeos SVN
- Replies: 7
- Views: 1950
Zeos SVN repo works perfectly fine while I'm writing this. It's probably network issue. It's impossible to resolve this through forum, I can give you only a few general tips: - you cant ping zeos.firmos.at. That's OK. - try to capture some network traffic and see is network connection established at...
- 27.05.2011, 10:47
- Forum: 6.6 - stable
- Topic: [Solved] Zeos SVN
- Replies: 7
- Views: 1950
- 27.05.2011, 08:34
- Forum: PostgreSQL
- Topic: Postgresql- Composite Types
- Replies: 3
- Views: 1743
- 26.05.2011, 19:51
- Forum: PostgreSQL
- Topic: Postgresql- Composite Types
- Replies: 3
- Views: 1743
Postgres has, among the other, composite types. I'm working with both and, must say, PG have much more features. Take a look into excelent pg documentation. Pg doesn't have embedded server and never will. Full instalation is quite small for todays machines so it is not handycap. If you really need s...
- 26.05.2011, 19:36
- Forum: ZDBC (ZEOS Database Connectivity)
- Topic: Memory Leak at DriverManager.GetConnection
- Replies: 11
- Views: 3341
- 22.05.2011, 13:59
- Forum: Off Topic
- Topic: FREE database tools for everybody
- Replies: 1
- Views: 23509
FREE database tools for everybody
I wasn't aware of this - since mid. of May all dreamcoder products (mysql, postgres and oracle managers) are free. Get it from: http://www.sqldeveloper.net/
Download, enjoy and donate..
Download, enjoy and donate..
- 20.05.2011, 20:29
- Forum: MySQL
- Topic: Compress Data between client and server?
- Replies: 6
- Views: 1465
mparak , compression mostly doesn't hurt but there are other factors that influence network bandwith. Network latency is one of them. If your network communcation consists of mostly smaller packets (mysql protocol is close to that definition) , this can be serious issue (time between two data packe...
- 20.05.2011, 20:06
- Forum: PostgreSQL
- Topic: Processing requests in asynchronous mode
- Replies: 5
- Views: 2353
- 20.05.2011, 15:00
- Forum: ZDBC (ZEOS Database Connectivity)
- Topic: Memory Leak at DriverManager.GetConnection
- Replies: 11
- Views: 3341
you can't (and don't need to) freeAndNil interfaced object because they are reference counted and automaticaly freed when not needed. IMO, it is sufficient to: destructor TEntityManagerFirebird.destroy; begin fConnection.CLose; fConnection := nil; inherited; end; I tried to generate memory leaks (se...