AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Administrar bases de datos / HFSQL / Funciones HFSQL
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Otros
Procedimientos almacenados
Returns the characteristics of an HFSQL Classic or Client/Server data file.
Ejemplo
// Récupération de la taille d'un fichier de données
// en utilisant la connexion en cours d'un fichier de données
Trace("Taille totale fichier Client: " + HInfoFile(Client, hTotalSize))
// Récupération de la taille d'un fichier de données en utilisant une connexion

// Paramètres de la connexion
CnxTest is Connection
CnxTest.Provider = hAccessHFClientServer
CnxTest.Utilisateur = "admin"
CnxTest.MotDePasse = "pass_admin"
CnxTest.Serveur = "serveur:4930"
CnxTest.BaseDeDonnées = "BaseTest"

Trace("Taille totale fichier Client: " + ...
HInfoFile(CnxTest.Nom, "NomFichier.FIC", hTotalSize))
Sintaxis

Finding out information regarding an HFSQL Classic data file Ocultar los detalles

<Result> = HInfoFile(<Data file> , <Information>)
<Result>: Type of the requested information
Sought information.
<Data file>: Character string
Name of the data file to analyze.
<Information>: Integer constant
Requested information about the data file:
hFicSizeSize of data file in bytes (".Fic" file).
hFtxSizeSize of full-text index file in bytes (".Ftx" file).
hMmoSizeSize of memo file in bytes (".Mmo" file).
hNdxSizeSize of index file in bytes (".Ndx" file).
Novedad versión 2024
hSdxSize
Size in bytes of spatial index file (".Sdx" file).
hTotalSizeTotal data file size in bytes (cumulative size of data file, memo file and index file).

Finding out information regarding an HFSQL Client/Server data file Ocultar los detalles

<Result> = HInfoFile(<Connection> , <Data file> , <Information>)
<Result>: Type of the requested information
  • Requested information,
  • 0 if the connection exists but the data file is not found on the drive.
<Connection>: Character string or Connection variable
Connection to use. This connection corresponds to:
<Data file>: Character string
Physical name of the data file to analyze.
<Information>: Integer constant
Requested information about the data file:
hFicSizeSize of data file in bytes (".Fic" file).
hFtxSizeSize of full-text index file in bytes (".Ftx" file).
hMmoSizeSize of memo file in bytes (".Mmo" file).
hNdxSizeSize of index file in bytes (".Ndx" file).
Novedad versión 2024
hSdxSize
Size in bytes of spatial index file (".Sdx" file).
hTotalSizeTotal data file size in bytes (cumulative size of data file, memo file and index file).
Componente: wd290hf.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 20/02/2024

Señalar un error o enviar una sugerencia | Ayuda local