Search found 158 matches

by sandeep_c24
06.08.2008, 10:28
Forum: Feature Requests
Topic: wince
Replies: 14
Views: 5236

Hi Mark I'll try and use Zeos tomorrow and see if I can get it to work on WinCE. Cigydd - I have Sqlite database on the device. It's very easy to use sqlite, just copy sqlite dll to the device where your exe is and then use sqlite database file by setting up some properties in TSlite dataset compone...
by sandeep_c24
06.08.2008, 07:38
Forum: Feature Requests
Topic: wince
Replies: 14
Views: 5236

Well since my post I have tried the TSqliteDataset component in Lazarus and it works fine. I think I'll use that for my current app.
by sandeep_c24
06.08.2008, 01:57
Forum: Feature Requests
Topic: wince
Replies: 14
Views: 5236

Hi Cigydd

Have you had any luck with Zeos on WinCE?

Regards

Sandeep
by sandeep_c24
18.07.2008, 09:10
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Saving/restoring a dataset to/from a file
Replies: 11
Views: 2328

If you have access to Clientdataset then you can save data to a file on disk and the load it from the disk.

Sandeep
by sandeep_c24
17.07.2008, 11:08
Forum: Off Topic
Topic: ANN: DBMaster Beta 1 released
Replies: 1
Views: 22337

Somehow we forgot to mention a very important feature of DBMaster on our website. We have updated the website to do so. It is about a reserved word called SCREEN. It can be used to output text from COPY and IMPORT commands to a sql window. e.g. copy table employee from fe1 to screen : will output ta...
by sandeep_c24
16.07.2008, 10:00
Forum: SQLite Administrator
Topic: [Request] Export to .sql
Replies: 5
Views: 3074

Try DBMaster, it does not have all what you need but it can certainly export table structure and data to sql commands which you can use to populate any database.

You can download from http://www.10thdoor.com

Regards

Sandeep
by sandeep_c24
13.07.2008, 23:13
Forum: Off Topic
Topic: ANN: DBMaster Beta 1 released
Replies: 1
Views: 22337

ANN: DBMaster Beta 1 released

We are pleased to announce the release of DBMaster Beta 1. Please
download it from http://www.10thdoor.com.

Please report all issues on our forums.

Regards

Sandeep
by sandeep_c24
08.07.2008, 09:38
Forum: User Contributions
Topic: Status of IncludeSources patch
Replies: 3
Views: 1942

Hi Mark A remark on your patch : Shouldn't you add the IncludeSource parameter to the cache key? That way you would force the sources to be queried if one changes the IncludeSources option of the metadata component. This is a good idea. I think we should do this. Do you have any ideas about its impl...
by sandeep_c24
06.07.2008, 05:19
Forum: User Contributions
Topic: Status of IncludeSources patch
Replies: 3
Views: 1942

Hi Mark

I just updated my source from svn and I see an implementation of UncachedGet - stuff.

I am not sure if IncludeSources parameter (in Gatprocedures, GetTables, etc) has been left out on purpose for this version or have you guys forgotten about it?

Regards

Sandeep
by sandeep_c24
01.07.2008, 10:50
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Error while installing 6.6.2
Replies: 2
Views: 970

I am not sure but I think Delphi Personal does not include DB stuff.

Sandeep
by sandeep_c24
30.06.2008, 22:02
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Referencing other tables
Replies: 5
Views: 1114

He Keirn

If you want to use computed columns in database try this

CREATE TABLE T1 (' ...etc.
Comp1 COMPUTED BY (dNum * (select c.Conv from CT c where SOME_CONDITION))

As far as computed columns are concerned you can do what you want in the OnCalculate event.

Regards

Sandeep
by sandeep_c24
25.06.2008, 22:03
Forum: Off Topic
Topic: User not able to register
Replies: 3
Views: 26194

User not able to register

Hi One of the user on Codegear forum is complaining about not being able to register on Zeos forums . This is what he said I cannot create an account on the Zeoa forum because 1. It took me over six attempts before I was finally able to read the security code during the registration process. 2. When...
by sandeep_c24
18.05.2008, 07:57
Forum: ADO
Topic: ADO Memory and handle count
Replies: 5
Views: 2813

I have been trying to find the cause of handle leaks in ADO and what I have found is if following line is used AdoRecordSet.Open(FAdoCommand, EmptyParam, adOpenForwardOnly, adLockOptimistic, adCmdUnspecified); instead of AdoRecordSet.Open(FAdoCommand, EmptyParam, adOpenForwardOnly, adLockOptimistic,...
by sandeep_c24
25.04.2008, 23:24
Forum: PostgreSQL
Topic: Metadata for Numeric Columns
Replies: 5
Views: 1363

Hi Mark I think it might be a good idea for me to setup these tests on my machine so that I can run them before sending the updates. Can I find some instruction on how to setup these tests. I tried running some tests yesterday but the database related tests didn't work as there was no database on my...
by sandeep_c24
25.04.2008, 11:35
Forum: PostgreSQL
Topic: Metadata for Numeric Columns
Replies: 5
Views: 1363

The only change is to the following lines

Code: Select all

          AttTypMod := AttTypMod - 4;
          Result.UpdateInt(7, AttTypMod shr 16);
Could you please tell what error you got.

Sandeep