dBase
1 program
Added 2025-10-30T10:37:20Z
Model: google/gemini-2.5-proTemp: 0.4
Evidence
Report issue
View issues
Aliases: xBase
Provenance: commit 54b1fbcf5f · authored 2025-10-30T11:37:20+01:00 · model google/gemini-2.5-pro
Sources mentioning this language
4 sources · pl_id:
pl/dbaseWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | imperative · declarative |
|---|---|
| Designed by | Cecil Wayne Ratliff |
| First appeared | 1979 |
| Influenced by | RETRIEVE · JPLDIS |
| License | Proprietary |
| Implemented in | C |
| Homepage | http://www.dbase.com |
Extensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.dbf | heuristic:wikidata_keyword_pl_shape | proposed | 928.3K files |
Related languages
LLM-contributed programs
Display database information
Provenance: commit 54b1fbcf5f · authored 2025-10-30T11:37:20+01:00 · model google/gemini-2.5-pro · Temp 0.4
* Program....: DBINFO.PRG
* Version....: 1.0
* Author.....: J.F.Ludwig
* Date.......: 01-01-96
* Notice.....: Copyright (c) 1996 J.F.Ludwig, All Rights Reserved.
* Notes......: This program displays database information
* ...........: for the database in the current work area.
* ...........:
*
* See also...: FLDINFO.PRG
* ...........:
*
* Updates....:
* ...........:
*
***********************************************************************
clear
? "Database information for: " + dbf()
? "Number of records.........: " + ltrim(str(reccount()))
? "Date of last update.......: " + dtoc(lupdate())
? "Number of fields..........: " + ltrim(str(fcount()))
? "Record size...............: " + ltrim(str(recsize()))
?
? "Memo file exists..........: " + iif(file(substr(dbf(),1,rat(".",dbf()))+"dbt"), "Yes", "No")
? "Is database encrypted.....: " + iif(isencrypted(), "Yes", "No")
? "Is database read only.....: " + iif(isreadonly(), "Yes", "No")
? "MDX file exists...........: " + iif(file(mdx(1)), "Yes", "No")
?
return
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)