2 'errors' that dont' seem to cause any harm - app still functions OK, but the 
"Error" concerns me.

steps:
use the mkdb.sh script (below) to make a db,
run the app wizard to create an app
run the app.
Hit "New", see in console:

Dabo Error Log: Sun Dec 17 17:37:45 2006: Failed to create newval for field 
'kTable1_pk'
Dabo Error Log: Sun Dec 17 17:37:45 2006: TYPES: {}
Dabo Error Log: Sun Dec 17 17:37:45 2006: 'kTable1_pk'
Dabo Error Log: Sun Dec 17 17:37:45 2006: Failed to create newval for field 
'cFid1'
Dabo Error Log: Sun Dec 17 17:37:45 2006: TYPES: {}
Dabo Error Log: Sun Dec 17 17:37:45 2006: 'cFid1'


Hit ^W to close form and app, see:

Dabo Error Log: Sun Dec 17 17:43:49 2006: !!! Data Type Mismatch: field=cFid1. 
Expecting: <type 'str'>; got: <type 'unicode'>

Carl K

# mkdb.sh
# makes a database on MySql
# it requires the daboadmin user be setup using the following command:
# mysql -u root --execute "create user daboadmin; grant ALL PRIVILEGES on *.* 
to 
daboadmin identified by 'dabo0' with grant option;"
set -x

mysql -u daboadmin <<EOF
DROP DATABASE IF EXISTS dabotest2;
CREATE DATABASE dabotest2;
GRANT ALL
         ON dabotest2.*
         TO dabouser
         IDENTIFIED BY 'dabo1';

use dabotest2;
create table table1 (
        kTable1_pk      int     auto_increment  primary key,
        cFid1 char(10) ) ;
EOF



_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev

Reply via email to