Avoid complaining from strlen

`
This commit is contained in:
Vítor Santos Costa
2015-09-21 17:05:36 -05:00
parent 880a9989c3
commit 4336b2ba88
469 changed files with 207364 additions and 9193 deletions

25
packages/myddas/#example# Normal file
View File

@@ -0,0 +1,25 @@
sqlite3 side:
create table test (id integer, x integer, y integer);
.separator ","
.import /home/vsc/Yap/ILP/HH/DaysInHospital_Y3.csv test
myddas side:
use_module(library(myddas)).
db_open(sqlite3,con,'../hh',x,x).
db_close(con).
test 2:
use_module(library(myddas)).
assert((
t2 :-
db_open(sqlite3,con,'../hh',x,x),
db_import(con,test,test),
test(A,B,C),
writeln(test(A,B,C)),
fail
)).
trace.
t2.