网站综合信息 adp.la
    • 标题:
    • ADP -- 
    • 关键字:
    •  
    • 描述:
    •  
    • 域名信息
    • 域名年龄:17年6个月22天  注册日期:2008年02月15日  到期时间:
      邮箱:ohfuji  电话:+81.338890451
      注册商:Key Systems GmbH 
    • 备案信息
    • 备案号: 
    网站收录SEO数据
    • 搜索引擎
    • 收录量
    • 反向链接
    • 其他
    • 百度
    • 0  
    • 0  
    • 快照:无首页快照  
    • Google
    • 234  
    • 10  
    • pr:3  
    • 雅虎
    • 0  
    •  
    •  
    • 搜搜
    • 0  
    •  
    •  
    • 搜狗
    • 0  
    •  
    • 评级:1/10  
    • 360搜索
    • 0  
    •  
    •  
    域名流量Alexa排名
    •  
    • 一周平均
    • 一个月平均
    • 三个月平均
    • Alexa全球排名
    • -  
    • 平均日IP
    • 日总PV
    • 人均PV(PV/IP比例)
    • 反向链接
    • dmoz目录收录
    • -  
    • 流量走势图
    域名注册Whois信息

    adp.la

    域名年龄: 17年6个月22天
    注册时间: 2008-02-15
    注 册 商: Key Systems GmbH
    注册邮箱: ohfuji
    联系电话: +81.338890451

    获取时间: 2015年07月12日 17:04:33
    Domain Name: ADP.LA
    Domain ID: D539981-CNIC
    WHOIS Server: whois.rrpproxy.net
    Referral URL: http://www.key-systems.net/
    Updated Date: 2015-03-02T16:00:08.0Z
    Creation Date: 2008-02-15T00:00:00.0Z
    Registry Expiry Date: 2016-02-15T23:59:59.0Z
    Sponsoring Registrar: Key Systems GmbH
    Sponsoring Registrar IANA ID: 269
    Domain Status: ok https://icann.org/epp#ok
    Registrant ID: P-189560
    Registrant Name: Ohfuji Katsuhisa
    Registrant Organization: System
    Registrant Street: Motoki 2-4-11
    Registrant City: Adachi-ku
    Registrant State/Province: Tokyo-to
    Registrant Postal Code: 123-0083
    Registrant Country: JP
    Registrant Phone: +81.338890451
    Registrant Phone Ext:
    Registrant Fax:
    Registrant Fax Ext:
    Registrant Email: ohfuji
    Admin ID: P-189560
    Admin Name: Ohfuji Katsuhisa
    Admin Organization: System
    Admin Street: Motoki 2-4-11
    Admin City: Adachi-ku
    Admin State/Province: Tokyo-to
    Admin Postal Code: 123-0083
    Admin Country: JP
    Admin Phone: +81.338890451
    Admin Phone Ext:
    Admin Fax:
    Admin Fax Ext:
    Admin Email: ohfuji
    Tech ID: P-189560
    Tech Name: Ohfuji Katsuhisa
    Tech Organization: System
    Tech Street: Motoki 2-4-11
    Tech City: Adachi-ku
    Tech State/Province: Tokyo-to
    Tech Postal Code: 123-0083
    Tech Country: JP
    Tech Phone: +81.338890451
    Tech Phone Ext:
    Tech Fax:
    Tech Fax Ext:
    Tech Email: ohfuji
    Name Server: NS1.VALUE-DOMAIN.COM
    Name Server: NS3.VALUE-DOMAIN.COM
    Name Server: NS2.VALUE-DOMAIN.COM
    DNSSEC: unsigned
    Billing ID: P-189560
    Billing Name: Ohfuji Katsuhisa
    Billing Organization: System
    Billing Street: Motoki 2-4-11
    Billing City: Adachi-ku
    Billing State/Province: Tokyo-to
    Billing Postal Code: 123-0083
    Billing Country: JP
    Billing Phone: +81.338890451
    Billing Phone Ext:
    Billing Fax:
    Billing Fax Ext:
    Billing Email: ohfuji
    >>> Last update of WHOIS database: 2015-07-12T09:13:27.0Z <<<

    For more information on Whois status codes, please visit https://icann.org/epp

    Access to the whois service is rate limited. For more information, please
    see https://registrar-console.centralnic.com/pub/whois_guidance.

    not found...
    同IP网站(同服务器)
  • 116.58.160.5 共1个网站 (日本)
  • ADP -- adp.la
  • 其他后缀域名
    • 顶级域名
    • 相关信息
    • adp.cn
    • 已注册 2006年04月05日
    网站首页快照(纯文字版)
    抓取时间:2019年06月06日 02:07:09
    网址:http://adp.la/
    标题:ADP --
    关键字:
    描述:
    主体:
    Programming Language  ADPJapaneseAbout ADPDownload and InstallCommand-line syntaxGrammerLibrary alphabetical  listLibrary by categoryError messagesSamplesHistory and RoadmapLicense and Support and OtherBlogSourceforge.netLoadingDescription of ADPADP (Another Data Processor) is a programing language that is designed for Web database programing. It is a scripting language and a lightweight programming language in which it is possible to mix SQL easily. It is easy to install.ADP is base on Prolog. But ADP uses only the backtrack and unification. The syntax is original and likes a another scripting language, supports method call.This Webpage is made with ADP.Concept of ADPADP is being developed with the following concepts.-A multiparadigmlanguage based on logic programming-A lightweight scripting language-High affinity for SQL-Simple and familiar syntax-Not requires installation of complex procedures-Decent running speed-Supporting multi-processorsADP aims to be a powerful language that helps busy engineers .Tutorials (basic syntax)StringYou can define in C-style string by enclosing the string in double quotes ("). - If you want to put a double quotation in a string, you need to put \" in the string.- \" and \r and \n, \\ are the same way as C.You can define in BASIC-style string by enclosing the string in single quotes ('). - If you want to put a single quotation in a string, you need to put '' in the string.If a string contains new line, it is valid.Example"SELECT * FROM tab "VariablesA variable name has to start dollar $ sign.Example$x $valuePredicate(Like calling a function)Predicate is the ADP assessment unit.Write the following. predicate_name(argment list)Exampleprint("Hello World")TermStrings and numbers, variables and predicate are called term.Goal cluase(Like a function body parts)Goal cluase has terms separated by commas "," and terminated by a semicolon ";".Goal clause is evaluated in the description of the order of source files by adp command.Example,print("Hello World");You input the source file above to adp command, then the command 'Hello World' on the screen. Horn clause(Like a function definition) Horn clause has a horn head and a goal cluase.  The horn head begins from a "+" charactor and has horn_clause_name and argment lists.  +horn_clause_name(argment list)goal_cluaseExample+horn_name($x,$y),print($x, '=', $y);CommentsA comment begins from a '#' character and ends to the end of the line.,printn("Hello World"); # Here is a comment.Tutorials (example of code)Hello Wold・program code(helloworld.p),printn("Hello World.");・example of the executionD:\sample>adp helloworld.pHello World.ADP command loads and compiles the program. Then, ADP evaluates goal clauses, executes the program.This sample, hellowrld.p, is evaluating predicate of 'printn'.  'printn' is one of the embedded predicate, l

    © 2010 - 2020 网站综合信息查询 同IP网站查询 相关类似网站查询 网站备案查询网站地图 最新查询 最近更新 优秀网站 热门网站 全部网站 同IP查询 备案查询

    2025-08-31 20:32, Process in 0.0058 second.