(A) Xbase is a structured format for storing data in files and indexes. It was used originally by foxPro and dBase. (B) Xbase is an expression language provided by Xtext.
Questions tagged [xbase]
83 questions
0
votes
1 answer
Xtext , Defining a Structure for a plot
i have to make a type curve that is a curve plot , the data is given by a CSV file (The interpreter is who read the data file). i have two type of values , x-axis, time (i think INT:INT) minutes:seconds format ; and y-axis voltage ( double ) . My…

Aikas
- 67
- 2
- 7
0
votes
0 answers
XBASE-Input -> com.linuxense.javadbf.DBFException: Failed to parse Number: multiple points
I have a problem with the "Extract from XBase File" ste in pentaho data integration
I can't extract file content and I have this error :
2017/03/10 10:01:14 - Extraction depuis Fichier XBase.0 - ERROR (version 7.0.0.0-25, build 1 from 2016-11-05…

Akino
- 303
- 1
- 4
- 16
0
votes
1 answer
Xtext: Reference a Java class from MyDsl
In my DSL, I want to have a code that looks like:
SomeType varName;
Where SomeType is a Java class.
Later on, if lets say SomeType is an enum java-class, and someone writes
varName=SOME_VALUE
I want to do a validation to see if SomeType.java…

John Benedetto
- 109
- 1
- 12
0
votes
2 answers
SQL to dBase Query Translator?
Is anyone aware of an application that will allow me to convert some existing SQL queries into dBase? I have an application that I need to program but it prefers dBase queries to SQL queries. I've written a working SQL query, but now need to figure…

Dave Mackey
- 4,306
- 21
- 78
- 136
0
votes
1 answer
Parse Harbour string array into PHP array
I'm using an ASP.NET web service that returns an Harbour array, it's syntax is:
// single dimensional
{ key1, key2, key3 }
// multi dimensional
{
{ key1-value1, key1-value2 },
{ key2-value1, key2-value2, key2-value3 },
{ key3-value1,…

Machado
- 8,965
- 6
- 43
- 46
0
votes
1 answer
Xtext Code Generation: Get raw String from XBlockExpression
Currently I am working on code generation based on an Xtext-DSL. Now I am facing the following problem:
I'm generating an .xtend file with my own implementation of the IGenerator interface. Everything works flawless but I can't access the raw String…

p0wl
- 658
- 5
- 10
0
votes
4 answers
Replacing table values with txt file VFP
im trying to replace a phc table with information from a txtfile but im not getting the information on the screen.
re is the table i want to replace the values
txtcabecalho is the imported file that people have to choose
reciboc is the cursor that…

Joh
- 11
- 6
0
votes
1 answer
Notepad++ custom language calltips autocomplete
I am trying to setup calltips functionality for Alaska XBase++ language in Notepad++, but I don't manage to get it working.
I read Npp's how to edit config files, I made a user-defined language called alaska, and created alaska.xml file and put it…

Mr. Istery
- 43
- 1
- 7
0
votes
1 answer
Can you use IDX indexes with xBaseJ
I have DBF's with IDX index files. It looks like xbase itself can handle them, but it does not look like a class has been written in xbasej for it yet. Has anyone used IDX files with xbasej, or can it be done?
Reference to…

Kris O'Mealy
- 172
- 1
- 9
0
votes
1 answer
I need to consume an ocx for voice recording and playblack
The current ocx controls I'm using for voice recording and playback are not compatible with Windows 7. I'm already feeling the pressure to produce a Windows 7 compatible version of my software. The author has already stated that he is not planning…

reinaldo Crespo
- 113
- 7
0
votes
1 answer
Import for custom class in XbaseCompiler
I'm writing a DSL using XBase, and I've added a new parser rule which returns an XExpression in the grammar:
DatastepExpression returns xbase::XExpression: {DatastepExpression} 'data' name=ID '{' '}';
and added the appropriate function to the…

Stuart
- 307
- 4
- 9
0
votes
1 answer
Error highlights in every line when grammar breaks somewhere in Xtext editor
public
class FirstExample { // Here in this example we define some properties in our class
WRITE // This WRITE command follows a rule type defined in my grammar
Hello World
private
String firstTitle ;
private
String secondTitle ;
private
Integer…

Buzzer
- 317
- 2
- 4
- 11
0
votes
1 answer
Perl, XBase module: no data retrieved if fields are passed to "prepare_select" via string
I have an issue that is driving me mad because I really think it's absurd..
What horribly obvious thing am I missing here?
this is a little snippet of code:
use XBase;
use strict;
my $table = new XBase $filename or die XBase->errstr;
my $cursor =…
0
votes
1 answer
How to check whether an XFeatureCall actually refers to something
When I'm scanning the ast I want to check whether an element of the type
XFeatureCall can be resolved.
Concrete example:
val x = 2
val y = x + z
I know that
val y = +
But only the XFeatureCall "z" should give true…

tgoossens
- 9,676
- 2
- 18
- 23
0
votes
1 answer
How to set multiple properties of a java annotation with xtend (using xbase)
According to the JvmTypesBuilder documentation, I use need to use toAnnotation(EObject sourceElement, Class type, Object value)
I do not understand what value I should put there? Because I have an annotation…

tgoossens
- 9,676
- 2
- 18
- 23