Cmdlets for Kintone

Build 23.0.8839

CacheProvider Parameter (Connect-Kintone Cmdlet)

The name of the provider to be used to cache data.

Syntax

Connect-Kintone -CacheProvider string

Data Type

cstr

Default Value

""

Remarks

You can cache to any database for which you have an ADO.NET provider. The caching database is determined based on the CacheProvider and CacheConnection properties.

The following sections show connection examples and address other requirements for several popular database drivers. Refer to CacheConnection for more information on typical connection properties.

Loading the Caching Database's Driver

The CacheProvider property specifies the name of the DbProviderFactory used to cache data. You can find the provider factories available to you in your machine.config.

SQLite

The cmdlet simplifies SQLite configuration; in most caching scenarios, you need to specify only the CacheLocation.

CacheLocation=C:\\Users\\Public\\cache.db;User=myuseraccount;Password=mypassword;Url=http://subdomain.domain.com;GuestSpaceId=myspaceid
You can persist the results of your queries while online for later use while offline: Set the AutoCache parameter in the Connect-Kintone cmdlet and invoke the Select-Kintone cmdlet, as shown in the following example:
Connect-Kintone -User 'myuseraccount' -Password 'mypassword' -URL 'http://subdomain.domain.com' -GuestSpaceId 'myspaceid' -CacheLocation 'C:\Users\Public\cache.db' -AutoCache | Select-Kintone -Table "Comments" -Where "AppId = '1354841'"

MySQL

To cache to MySQL, you can use the included CData ADO.NET Provider for MySQL:
Cache Provider=System.Data.CData.MySQL;Cache Connection='Server=localhost;Port=3306;Database=cache;User=root;Password=123456';User=myUser;Password=myPassword;Security Token=myToken;
You can persist the results of your queries while online for later use while offline: Set the AutoCache parameter in the Connect-Kintone cmdlet and invoke the Select-Kintone cmdlet:
Connect-Kintone -User 'myuseraccount' -Password 'mypassword' -URL 'http://subdomain.domain.com' -GuestSpaceId 'myspaceid' -CacheProvider 'System.Data.CData.MySQL' -CacheConnection 'Server=localhost;Port=3306;Database=cache;User=root;Password=123456' -AutoCache | Select-Kintone -Table "Comments" 

SQL Server

You can use the Microsoft .NET Framework Provider for SQL Server, included in the .NET Framework, to cache to SQL Server:

Cache Provider=System.Data.SqlClient;Cache Connection="Server=MyMACHINE\MyInstance;Database=SQLCACHE;User Id=root;Password=admin";User=myuseraccount;Password=mypassword;Url=http://subdomain.domain.com;GuestSpaceId=myspaceid
You can persist the results of your queries while online for later use while offline: Set the AutoCache parameter in the Connect-Kintone cmdlet and invoke the Select-Kintone cmdlet:
Connect-Kintone -User 'myuseraccount' -Password 'mypassword' -URL 'http://subdomain.domain.com' -GuestSpaceId 'myspaceid' -CacheProvider 'System.Data.SqlClient' -CacheConnection 'Server=MyMACHINE\MyInstance;Database=SQLCACHE;User Id=root;Password=admin' -AutoCache | Select-Kintone -Table "Comments" 

Oracle

To cache to Oracle, you can use the Oracle Data Provider for .NET, as shown in the following example:

Cache Provider=Oracle.DataAccess.Client;Cache Connection='User Id=scott;Password=tiger;Data Source=ORCL';User=myuseraccount;Password=mypassword;Url=http://subdomain.domain.com;GuestSpaceId=myspaceid

The Oracle Data Provider for .NET also requires the Oracle Database Client. When you download the Oracle Database Client, ensure that the bitness matches the the bitness of your machine. When you install select either the Runtime or Administrator installation type;, the Instant Client is not sufficient. You can persist the results of your queries while online for later use while offline: Set the AutoCache parameter in the Connect-Kintone cmdlet and invoke the Select-Kintone cmdlet, as shown in the following example:

Connect-Kintone -User 'myuseraccount' -Password 'mypassword' -URL 'http://subdomain.domain.com' -GuestSpaceId 'myspaceid' -CacheProvider 'Oracle.DataAccess.Client' -CacheConnection "User Id=scott;Password=tiger;Data Source=ORCL" -AutoCache | Select-Kintone -Table "Comments"

PostgreSQL

To cache to PostgreSQL, you can use the included CData ADO.NET Provider for PostgreSQL:
Cache Provider=System.Data.CData.PostgreSQL;Cache Connection='Server=localhost;Port=5432;Database=cache;User=postgres;Password=123456';User=myUser;Password=myPassword;Security Token=myToken;
You can persist the results of your queries while online for later use while offline: Set the AutoCache parameter in the Connect-Kintone cmdlet and invoke the Select-Kintone cmdlet:
Connect-Kintone -User 'myuseraccount' -Password 'mypassword' -URL 'http://subdomain.domain.com' -GuestSpaceId 'myspaceid' -CacheProvider 'System.Data.CData.PostgreSQL' -CacheConnection 'Server=localhost;Port=5432;Database=cache;User=root;Password=123456' -AutoCache | Select-Kintone -Table "Comments" 

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839