Questions tagged [4gl]

A programming language with a specific domain intended, such as business or science, in which the basic units are of a higher abstraction or power.

Following on the heels of 3GL languages such as C, COBOL and Pascal, the promise of the 4GL was to solve the problem at a higher level of abstraction. A 4GL would be designed with a specific problem domain in mind, such as commerce.

Many 4GLs did not go on to fulfill their initial promise, as 3GLs continued to expand in power and scope, and standardized libraries became more pervasive. The line today between a 3GL and a 4GL is blurry; most modern languages could be considered 4GLs.

Simply tagging your post should be avoided. It's better to tag your post with a tag of your specific 4GL-language. Or at least add the language tag to the 4GL-tag.

Examples:

Informix 4gl can be tagged .

Progress 4GL/ABL -->

Ingres -->

etc.

137 questions
0
votes
2 answers

Proc compare - comparing variables in two datasets that have different sizes and different variable placement

So, I have a significant problem with proc compare. I have two datasets with the two columns. One column lists table names and the other one - names of variables which correspond to table names from the first column. I want compare values of one of…
Dontik
  • 1
  • 1
  • 5
0
votes
1 answer

sas 9.3 user deleted and created again Users Folders

problem is like below: we have user 'Mike' in SAS metadata Mike has personal folder in metadata 'User Folders/Mike/My Folder' Mike was deleted (accidentally). We created user Mike again; now Mike has personal folder in metadata 'User…
0
votes
3 answers

convert scientific notation float value to a decimal variable (4gl, informix)

we have an sql table with a float column storing values in scientific notation. I have a value -1.23E-256. when i run a query and assign the query results to variables i am assigning this float value to a decimal(15,2). But because of this…
user2966339
  • 1
  • 1
  • 1
0
votes
2 answers

How to convert .txt files to .xls files using informix 4GL codes

I got a question to be disscuss.I am working on INFORMIX 4GL programs. That programs produce output text files.This is an example of the output: Lot No|Purchaser name|Billing|Payment|Deposit|Balance| J1006|JAUHARI BIN…
Rahim Jaafar
  • 43
  • 1
  • 1
  • 8
0
votes
1 answer

update table that contains single quote symbol with different online server in informix 4 gl

hi all,I am working on informix-4gl.my programs is about to adds and update user information from one tables to many tables.The tables are also must be update from different online server.The main tables is working on online06 named 'crsell' table…
Rahim Jaafar
  • 43
  • 1
  • 1
  • 8
0
votes
1 answer

How to connect to an Informix database on a server from Genero Studio?

We want to migrate written 4gl programs (with their .per, form files) to Genero Studio so it can be with Windows Forms. How could we create a connection so the .4gl files can retrieve the needed databases? I just want to connect to it, I don't want…
0
votes
1 answer

How to diff and show where is the different in a line between two files

File a- aaabaaa File b- aaaaaa Request output sample- aaa-aaa *- mean there is a letter missing How to done this using basic unix command or shellscript or sql or 4gl code? ( need just any 1 )
0
votes
5 answers

Is there any demand for 4GL?

what can i do with 4GL that i cant do with VB? what industries are seeking for 4GL programmers?
Alex Gordon
  • 51,480
  • 273
  • 609
  • 976
0
votes
6 answers

is it possible to write record as NO-UNDO in transaction?

we are making some loging issue, where we need write the logentries in the DB. But the process run in a transaction and by rollback are our new logentries also deleted. can I make a write in DB out of the transaction? something like write in…
firhang
  • 244
  • 1
  • 10
-1
votes
1 answer

Can Informix 4gl be run on Azure Could?

We are planning to migrate Informix DB to Azure cloud, but we have a lot of 4gl programs running on server. Is Azure cloud support 4gl? and any reference can be shared. Many thanks.
Henry
  • 1
-1
votes
1 answer

How can I learn the Apex language?

I bid for a freelance gig earlier, coding in the Apex language, used for the Force.com CRM platform. It looks like an interesting language to learn and code, but it also looks expensive. Is there a way I can download a shell platform, just for…
ProfK
  • 44,292
  • 106
  • 358
  • 713
-1
votes
1 answer

progress 4GL / ABL How to Convert string "July 24 2015" to #06/24/2015# date(TS)?

I have string like "July 24 2015" is it possible to convert this to date(TS) data type? it would convert to something like mm/dd/YYYY "07/24/2015 00:00:00.000" Can I do that with progress 4GL? thank you
BobNoobGuy
  • 1,385
  • 2
  • 25
  • 52
-1
votes
1 answer

When assigning the value of a MEMPTR to a LONGCHAR variable using GET-STRING, i got an error 9324

When assigning the value of a MEMPTR to a LONGCHAR variable using GET-STRING, i got an error 9324 (Attempt to exceed maximum size of a CHARACTER variable) is there any solution ?
Ravi
  • 31
  • 1
  • 5
-1
votes
1 answer

Logic of progress code

Logic of progress code -: Can any one tell me the logic of following code in progress? Input (from user) - 123456 Output - One Lac Twenty three thousand four hundred fifty six.
Riyaz
  • 9
  • 2
-1
votes
1 answer

how to diff and show only exact differences for 2 long string

I have 2 files- a and b. a 1,"abc","( @docid =""00123"" or @docid =""00456"") AND a_number is not NULL" b 1,"abc","( @docid =""00123"" or @docid =""00456"") AND @a_number is not NULL" How do I diff this 2 files and show only the part changes in…
1 2 3
9
10