forked from go/golangs_learn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
246 B
11 lines
246 B
4 years ago
|
package main
|
||
|
|
||
|
/**
|
||
|
需求:
|
||
|
读取SQLite相关表,匹配查询对应Oracle是否存在相同表名和字段(数量、名称和顺序一致)
|
||
|
*/
|
||
|
func main() {
|
||
|
|
||
|
println("测试设置读取SQLite数据插入到指定Oracle数据库中。")
|
||
|
}
|