小编dsc*_*enk的帖子

Windows 8应用程序 - 本地存储安全性

本地数据的安全性如何

ApplicationData.Current.LocalSettings
Run Code Online (Sandbox Code Playgroud)

Windows 8商店应用程序中使用的存储?

这个应用程序数据存储文章没有说明安全性,也没有说明这一点.

可以从应用程序外部操纵此数据吗?

我查看了数据的位置

C:\用户[用户名] \应用程序数据\本地\封装[package_namespace]\LocalState)

但没有找到它.它到底在哪里保存?

我正在尝试评估此存储机制的安全性,以决定是否可以在那里存储安全关键信息.

security windows-8 windows-store-apps

6
推荐指数
1
解决办法
2366
查看次数

drupal 7自定义架构错误datetime

我有以下架构(从自定义模块中的架构模块(7.x-1.0-beta3)的现有表生成.

function myproject_entities_schema() {

// ---------------------------------------------------------------------------------
// MESSAGE
// ---------------------------------------------------------------------------------
$schema['myproject_entity_message'] = array(
    'description' => 'The base table for myproject message instances',
    'fields' => array(
        'id' => array(
            'description' => 'The primary identifier for a message instance',
            'type' => 'serial',
            'unsigned' => TRUE,
            'not null' => TRUE,
        ),
        'weekendday' => array(
            'description' => 'Whether this message gets send on a weekendday(1) or on a workday(0)',
            'type' => 'int',
            'size' => 'tiny',
            'not null' => TRUE,
            'default' => 0, …
Run Code Online (Sandbox Code Playgroud)

php mysql drupal drupal-7 drupal-schema

4
推荐指数
1
解决办法
4509
查看次数