Skip to content

Commit

Permalink
update README for V4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
knonomura committed May 23, 2019
1 parent 014c691 commit 7450361
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 14 deletions.
36 changes: 29 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -41,15 +40,38 @@ GridDB server need to be started in advance.
<GridDB cluster name> <GridDB user> <GridDB password>
-->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 <GridDB notification address(default is 239.0.0.1)> <GridDB notification port(default is 31999)>
<GridDB cluster name> <GridDB user> <GridDB password>
-->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.
Expand Down
36 changes: 29 additions & 7 deletions README_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -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クライアントのビルド

Expand All @@ -39,14 +38,37 @@ GridDB C
<GridDB cluster name> <GridDB user> <GridDB password>
-->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 <GridDB notification address(default is 239.0.0.1)> <GridDB notification port(default is 31999)>
<GridDB cluster name> <GridDB user> <GridDB password>
-->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機能をご利用ください。
Expand Down

0 comments on commit 7450361

Please sign in to comment.