Archive for the ‘SQL Server Compact’ Category

  1. Hello, SQL Server Compact World!

    Posted on 3月 8th, 2012 by cx20

    SQL Server Compact

    SQL Server Compact はマイクロソフトの組み込み向け RDBMS である。
    SQL Server の T-SQL(Transact-SQL)のサブセットが利用できる。
    SQL Server Compact 向けのコマンドラインツール(sqlcecmd.exe)は CodePlex よりダウンロードできる。

    ソースコード(T-SQL)

    SELECT 'Hello, SQL Server Compact World!' AS Message
    GO

    実行方法

    C:¥> sqlcecmd -d "Data Source=hello.sdf" -i hello.sql

    実行結果

    Message
    -------
    Hello, SQL Server Compact World!
     
    (1 rows affected)