问题描述
- SET LIBRARY TO DBRECNO 中DBRECNO 在哪里?
-
SET LIBRARY TO DBRECNO
DO CreateTest
GO 3
? DBRECNO()
GO 6
? DBRECNO()
USE
? DBRECNO() && returns -119PROCEDURE CreateTest
CREATE TABLE test (ABC C(20))
APPEND BLANK
REPLACE ABC WITH "This is record 1"
APPEND BLANK
REPLACE ABC WITH "This is record 2"
APPEND BLANK
REPLACE ABC WITH "This is record 3"
APPEND BLANK
REPLACE ABC WITH "This is record 4"
APPEND BLANK
REPLACE ABC WITH "This is record 5"
APPEND BLANK
REPLACE ABC WITH "This is record 6"
GO TOP
RETURN
DBRECNO 在哪里?
解决方案
打开.gradle文件看到如下信息
defaultConfig {
? ? ? ? applicationId "com.super.app" ?
? ? ? ? minSdkVersion 15
? ? ? ? targetSdkVer......
答案就在这里:android studio 1.0 Library projects cannot set applicationId. applicationId is set to '' in default
时间: 2024-09-20 17:16:11