From 7450361a4d38c90933ef494a751c94f89d255675 Mon Sep 17 00:00:00 2001 From: knonomura Date: Thu, 23 May 2019 14:00:35 +0900 Subject: [PATCH] update README for V4.2 --- README.md | 36 +++++++++++++++++++++++++++++------- README_ja.md | 36 +++++++++++++++++++++++++++++------- 2 files changed, 58 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index d91329a..e1b0999 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,10 @@ Please refer to the API(C) section in API Reference for detailed information. Library building and program execution are checked in the environment below. - OS: CentOS 7.3(x64) - GCC: Version 4.8.5 - GridDB server: Version 4.1 CE(Community Edition) + OS: CentOS 7.6(x64) (gcc 4.8.5), Windows 10(x64) (VS2017) + GridDB server: V4.2 CE(Community Edition) on CentOS 7.6(x64) -## Quick start +## Quick start (CentOS) ### Build a C client @@ -41,15 +40,38 @@ GridDB server need to be started in advance. -->Person: name=name02 status=false count=2 lob=[65, 66, 67, 68, 69, 70, 71, 72, 73, 74] -Note: GEOMETRY type is not available for C Client(Community Edition). -Note: The gridstore.h file on client/c/include folder is used for building. -Note: There are some samples on client/c/sample folder. +## Quick start (Windows) + +### Build a C client + +After starting VS with client.sln, build client project. + +The following files are created under the bin/x64 folder. + + gridstore_c.dll + gridstore_c.lib + +### Execute a sample program +GridDB server need to be started in advance. + +After starting VS with client.sln, build sample project. A sample.exe is created under the bin/x64 folder. + + > sample.exe sample1 en + + -->Person: name=name02 status=false count=2 lob=[65, 66, 67, 68, 69, 70, 71, 72, 73, 74] + + +(Additional information) +- The gridstore.h file on client/c/include folder is used for building. +- There are some samples on client/c/sample folder. ## Document Refer to the file below for more detailed information. - [API Reference](https://griddb.github.io/griddb_nosql/manual/GridDB_API_Reference.html) - [API Reference(Japanese)](https://griddb.github.io/griddb_nosql/manual/GridDB_API_Reference_ja.html) +Note: GEOMETRY type is not available for C Client CE(Community Edition). + ## Community * Issues Use the GitHub issue function if you have any requests, questions, or bug reports. diff --git a/README_ja.md b/README_ja.md index 54fad62..3346f82 100644 --- a/README_ja.md +++ b/README_ja.md @@ -10,11 +10,10 @@ GridDB C 以下の環境でCクライアントのビルドとサンプルプログラムの実行を確認しています。 - OS: CentOS 7.3(x64) - GCC: Version 4.8.5 - GridDB server: Version 4.1 CE(Community Edition) + OS: CentOS 7.6(x64) (gcc 4.8.5), Windows 10(x64) (VS2017) + GridDB server: V4.2 CE(Community Edition), CentOS 7.5(x64) -## クイックスタート +## クイックスタート(CentOS) ### Cクライアントのビルド @@ -39,14 +38,37 @@ GridDB C -->Person: name=name02 status=false count=2 lob=[65, 66, 67, 68, 69, 70, 71, 72, 73, 74] -※Cクライアント(Community Edittion)では空間型は利用できません。 -※client/c/includeフォルダの下に、ビルドに使われるgridstore.hファイルがあります。 -※client/c/sampleフォルダの下に、サンプルプログラムがあります。 +## クイックスタート(Windows) + +### Cクライアントのビルド + +client.slnファイルをクリックしてVSを起動後、clientプロジェクトをビルドしてください。 + +bin/x64フォルダの下に以下のファイルが作成されます。 + + gridstore_c.dll + gridstore_c.lib + +### サンプルプログラムの実行 +事前にGridDBサーバを起動しておく必要があります。 + +client.slnファイルをクリックしてVSを起動後、sampleプロジェクトをビルドすると、bin/x64フォルダの下にsample.exeファイルが作成されます。 + + > sample.exe sample1 en + + -->Person: name=name02 status=false count=2 lob=[65, 66, 67, 68, 69, 70, 71, 72, 73, 74] + + +(追加情報) +- client/c/includeフォルダの下に、ビルドに使われるgridstore.hファイルがあります。 +- client/c/sampleフォルダの下に、サンプルプログラムがあります。 ## ドキュメント 詳細は以下のドキュメントを参照してください。 - [APIリファレンス](https://griddb.github.io/griddb_nosql/manual/GridDB_API_Reference_ja.html) +※Cクライアント(Community Edition)では空間型は利用できません。 + ## コミュニティ * Issues 質問、不具合報告はissue機能をご利用ください。