byteteacher0 commented on PR #5350:
URL: https://github.com/apache/seatunnel/pull/5350#issuecomment-1686492917

   env {
     # You can set flink configuration here
     execution.parallelism = 1
     job.mode = "BATCH"
     #execution.checkpoint.interval = 10000
     #execution.checkpoint.data-uri = "hdfs://localhost:9000/checkpoint"
   }
   
   source {
     Access {
       driver = "net.ucanaccess.jdbc.UcanaccessDriver"
       url = "jdbc:ucanaccess://D:\\tmp\\Database1.accdb"
       username = ""
       password = ""
       query = "select ID, name, address, age, birthday, a, b, c, d, e, f, g, h 
 from student"
     }
   }
   
   sink {
     Access {
       driver = "net.ucanaccess.jdbc.UcanaccessDriver"
       url = "jdbc:ucanaccess://D:\\tmp\\Database1.accdb"
       username = ""
       password = ""
       table = "student"
       query = """insert into student(id, naMe, address, age, birthday,  a, b, 
c, d, e, f, g, h) values(?,?,?,?,?,?,?,?,?,?,?,?,?);"""
     }
   }


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to