AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

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
// Get the size of a data file by using a connection
 
// Connection parameters
CntTest is Connection
CntTest.Provider = hAccessHFClientServer
CntTest.User = "admin"
CntTest.Password = "pass_admin"
CntTest.Server = "server:4930"
CntTest.Database = "TestDatabase"
 
Trace("Total size of Customer file: " + ...
CntTest.InfoFile("FileName.FIC", hTotalSize))

Obtener información sobre un archivo de datos HFSQL Client/Server Ocultar los detalles

<Result> = <Connection>.FileInfo(<Data file> , <Information>)
<Result>: Tipo de información solicitada
  • Requested information,
  • 0 if the connection exists but the data file is not found on the drive.
<Connection>: Variable de tipo Connection
Name of the Connection variable that describes the connection to use.
<Data file>: Cadena de caracteres
Physical name of the data file to analyze.
<Information>: Constante de tipo Integer
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 25
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 20/06/2023

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