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/dbase
LLM (this repo) · 1PldbWikipediaWikidata · Q300971

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsimperative · declarative
Designed byCecil Wayne Ratliff
First appeared1979
Influenced byRETRIEVE · JPLDIS
LicenseProprietary
Implemented inC
Homepagehttp://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.
ExtensionSourceStrengthSWH
.dbfheuristic:wikidata_keyword_pl_shapeproposed928.3K files

Related languages

dBASE II (0.40)XBLite (0.39)dBASE III (0.33)Harbour (0.29)XBase (0.29)

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
code.prg · added: 2025-10-30T10:37:20Z
* 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.)

Contribute — propose a file extension

Tell us where to find evidence about dBase (mapped to pl/dbase). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/dBase/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Daydream dBASE II →