Hi,
I am trying to create graph using csv data .
It is showing that import is successful however no data comes into the DB.
Steps I followed is as below:
-
Created a csv file
-
Created a call.sms file
PREFIX person: <http://stardog.com/person/>
MAPPING
FROM CSV {
"Src" : "?src"
}
TO {
?person1 a person:Person ;
person:name ?src.
}
WHERE {
BIND (template("http://stardog.com/person/{src}") AS ?person1)
}
- Ran the import command and details is
C:\stardog\bin>stardog-admin virtual import --format sms2 call call.sms Zac.csv
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$2 (file:/C:/stardog/client/api/guice-4.0.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$2
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
Import completed successfully