dbTalk Databases Forums  

Does anyone know what database/query language/whatever that thisbelongs to?

comp.databases comp.databases


Discuss Does anyone know what database/query language/whatever that thisbelongs to? in the comp.databases forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Jonathan Wilson
 
Posts: n/a

Default Does anyone know what database/query language/whatever that thisbelongs to? - 02-24-2009 , 09:24 AM






I am dealing with some code that talks to a database. It is using something
like this to run a query of some kind:
sml: declare schema count (count integer);
declare buffer schema count;
table $table = open_table('%s');
buffer_put(count, $table->get_record_number());
buffer_move_next();

or this one:
sml:declare schema note (UID integer);
declare buffer schema note;
cursor $c=open_cursor('%s');
while($c->move_next())
{
buffer_put(UID, $c->get_field('UID'));
buffer_move_next();
};

Has anyone seen anything like this being used to query a database before?
A google search revealed nothing, perhaps it was invented by the company
who wrote the code I am dealing with.

Reply With Quote
  #2  
Old   
EricF
 
Posts: n/a

Default Re: Does anyone know what database/query language/whatever that thisbelongs to? - 02-24-2009 , 10:13 PM






In article <49a4113f (AT) dnews (DOT) tpgi.com.au>, Jonathan Wilson <jfwfreo (AT) tpgi (DOT) com.au> wrote:
Quote:
I am dealing with some code that talks to a database. It is using something
like this to run a query of some kind:
sml: declare schema count (count integer);
declare buffer schema count;
table $table = open_table('%s');
buffer_put(count, $table->get_record_number());
buffer_move_next();

or this one:
sml:declare schema note (UID integer);
declare buffer schema note;
cursor $c=open_cursor('%s');
while($c->move_next())
{
buffer_put(UID, $c->get_field('UID'));
buffer_move_next();
};

Has anyone seen anything like this being used to query a database before?
A google search revealed nothing, perhaps it was invented by the company
who wrote the code I am dealing with.
Could it be standard ml?

http://en.wikipedia.org/wiki/Standard_ML


Reply With Quote
  #3  
Old   
Jonathan Wilson
 
Posts: n/a

Default Re: Does anyone know what database/query language/whatever that thisbelongsto? - 02-25-2009 , 07:05 AM



Quote:
Could it be standard ml?

http://en.wikipedia.org/wiki/Standard_ML
Nope, looks nothing like Standard ML.
Also, this language is interpreted and not compiled.


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.