Tagged Questions

Clarion is a commercial, 4GL, object-oriented, programming language and Integrated Development Environment from SoftVelocity used to program database applications.

learn more… | top users | synonyms

35
votes
11answers
2k views

How to count each digit in a range of integers?

Imagine you sell those metallic digits used to number houses, locker doors, hotel rooms, etc. You need to find how many of each digit to ship when your customer needs to number doors/houses: 1 to ...
3
votes
12answers
888 views

What do you think about Clarion? [closed]

Recently the CEO of the company has attended some conference, and since his returns he's only talking about Clarion programming. We've been developing a Ruby on Rails project for 2 years now, but he ...
2
votes
3answers
105 views

How do I properly pass an array address in Clarion?

Prototype: myFunction( ULONG , *ULONG ),PASCAL Variables: myArray ULONG, DIM(30) myStuff ULONG Code: ... myFunction(myStuff, myArray) ... Error: No matching prototype available - C:... ...
2
votes
4answers
346 views

POSTing to the web in Clarion

I'm developing a RESTful API for a client. The problem is, he's using a rather obscure language called Clarion. It's proprietary and closed, and the docs are not freely available online. Whenever we ...
1
vote
0answers
115 views

Using the devExpress WinForms controls with Clarion NET

How seamless is the integration of devexpress winforms controls in Clarion NET? Does it work at all? Is it comfortable?
0
votes
1answer
44 views

How to access Clarion Tables from Java

I have this client with this system coded in Clarion. He is needing an webservice in Java to public some APIs from their system. Does anyone know the best approach to access and modify any given ...
0
votes
1answer
305 views

Share 1 table between 2 different types of databases

The problem that I have is that I want to synchronize one table between two different databases. Database 1 is on a XP server with MySQL Database 2 is on a Novell server with Clarion. Is it possible ...
0
votes
1answer
352 views

ODBC Linked server in sql 2005 doesn’t work from remote box

I have a dev workstation with sql 2005 installed and in it I created a linked server to a odbc connection to a clarion database. I can run select statements against it inside sql Mgt studio. When I ...
0
votes
5answers
292 views

Sourcecontrol for Clarion 6

We're still developing a bunch of our application in Clarion 6 Enterprise. I was wondering if anyone knows of a sourcecontrol system that works well with Clarion 6?
0
votes
2answers
82 views

What Backup Library/Code Do You Use For Your Dataset (Files On Disk)?

I'm implementing Backup functionality into my new (small) app, Oldaer. I've got standalone desktop files (rather than sitting in a SQL db). Looking around, I decided on using a Clarion 3rd-Party ...
0
votes
3answers
478 views

Clarion: Possible to use a C# Assembly?

Is it possible to use a C# assembly from Clarion? If not. Is it possible to run a simple console application written in C# and read the output from it back into Clarion? In both cases, how would you ...