PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV Mobile 2024 → [WM20] Error creating HyperFile Database
[WM20] Error creating HyperFile Database
Débuté par rob, 30 jan. 2016 00:02 - 1 réponse
Membre enregistré
105 messages
Posté le 30 janvier 2016 - 00:02
Heya everyone. I'm running into a strange issue.

Creating an application for a Windows CE device, using a small database. The file contains 9 fields including the ID field.
I'm issuing the HCreationIfNotFOund("*") function to create the data file.

The file it's self is set up as a HFSQL Classic file.

But the error I'm getting is this.

HCreationIfNotFound function called.
Unable to open <\USER_DATA\Data\LocalInventory.ndx> file ('file exceeding 2 GB'). File size not supported by operating system

So I figure this is one of two things.

1) it's trying to create a gigantic empty file, in which case why is it doing that?
2) It's complaining that the file system doesn't support files over 2Gb in size. Why does it care? And how can I make it not care?

Any pointers would be greatly appreciated.
Membre enregistré
105 messages
Posté le 30 janvier 2016 - 00:14
Never mind, should have spent a little more time looking.

I ran across the ..HugeFile property on the file, which lead me to the "Manage the data files exceeding 2 GB" check box.

All good now.