Fast, batch, insertmany construct in go-sqlite3?










0















I'd like to batch insert many items with the same prepared statement in sqlite3, using go-sqlite3.



I'm looking for something like the mongodb construct for inserting an array of the same type of records, with automatic transaction/batch handling.



I imagine something like the following:



type Rec struct 
A string
B string


db, err := sql.Open("sqlite3", "my.db")
checkErr(err)

stmt, err := db.Prepare("INSERT INTO Recs(a, b) values(?,?)")
checkErr(err)

R1 := Rec"A":1,"B":2
R2 := Rec"A":3,"B":4 // in practice, some loop generates these...

Recs := R1,R2

_, err = stmt.ExecMany(Recs)


Does this kind of syntax exist for sqlite?



I'm currently doing the following:



var Recs Rec

batch := 0
for i:=0;i<100000; i++
R := Rec"A":i,"B":i+1
Recs = append(Recs, R)
if (batch % 100)
tx, err := db.Begin()
stmt, err := db.Prepare("INSERT INTO Recs(a, b) values(?,?)")
for _, r := range Recs
_, err = stmt.Exec(r.A, r.B)
checkErr(err)

err = tx.Commit()
checkErr(err)
Recs = Recs[0:0]
batch = 1
else
batch = batch + 1




but it is super slow, and I keep errorring out with errors like:



panic: database is locked.









share|improve this question




























    0















    I'd like to batch insert many items with the same prepared statement in sqlite3, using go-sqlite3.



    I'm looking for something like the mongodb construct for inserting an array of the same type of records, with automatic transaction/batch handling.



    I imagine something like the following:



    type Rec struct 
    A string
    B string


    db, err := sql.Open("sqlite3", "my.db")
    checkErr(err)

    stmt, err := db.Prepare("INSERT INTO Recs(a, b) values(?,?)")
    checkErr(err)

    R1 := Rec"A":1,"B":2
    R2 := Rec"A":3,"B":4 // in practice, some loop generates these...

    Recs := R1,R2

    _, err = stmt.ExecMany(Recs)


    Does this kind of syntax exist for sqlite?



    I'm currently doing the following:



    var Recs Rec

    batch := 0
    for i:=0;i<100000; i++
    R := Rec"A":i,"B":i+1
    Recs = append(Recs, R)
    if (batch % 100)
    tx, err := db.Begin()
    stmt, err := db.Prepare("INSERT INTO Recs(a, b) values(?,?)")
    for _, r := range Recs
    _, err = stmt.Exec(r.A, r.B)
    checkErr(err)

    err = tx.Commit()
    checkErr(err)
    Recs = Recs[0:0]
    batch = 1
    else
    batch = batch + 1




    but it is super slow, and I keep errorring out with errors like:



    panic: database is locked.









    share|improve this question


























      0












      0








      0








      I'd like to batch insert many items with the same prepared statement in sqlite3, using go-sqlite3.



      I'm looking for something like the mongodb construct for inserting an array of the same type of records, with automatic transaction/batch handling.



      I imagine something like the following:



      type Rec struct 
      A string
      B string


      db, err := sql.Open("sqlite3", "my.db")
      checkErr(err)

      stmt, err := db.Prepare("INSERT INTO Recs(a, b) values(?,?)")
      checkErr(err)

      R1 := Rec"A":1,"B":2
      R2 := Rec"A":3,"B":4 // in practice, some loop generates these...

      Recs := R1,R2

      _, err = stmt.ExecMany(Recs)


      Does this kind of syntax exist for sqlite?



      I'm currently doing the following:



      var Recs Rec

      batch := 0
      for i:=0;i<100000; i++
      R := Rec"A":i,"B":i+1
      Recs = append(Recs, R)
      if (batch % 100)
      tx, err := db.Begin()
      stmt, err := db.Prepare("INSERT INTO Recs(a, b) values(?,?)")
      for _, r := range Recs
      _, err = stmt.Exec(r.A, r.B)
      checkErr(err)

      err = tx.Commit()
      checkErr(err)
      Recs = Recs[0:0]
      batch = 1
      else
      batch = batch + 1




      but it is super slow, and I keep errorring out with errors like:



      panic: database is locked.









      share|improve this question
















      I'd like to batch insert many items with the same prepared statement in sqlite3, using go-sqlite3.



      I'm looking for something like the mongodb construct for inserting an array of the same type of records, with automatic transaction/batch handling.



      I imagine something like the following:



      type Rec struct 
      A string
      B string


      db, err := sql.Open("sqlite3", "my.db")
      checkErr(err)

      stmt, err := db.Prepare("INSERT INTO Recs(a, b) values(?,?)")
      checkErr(err)

      R1 := Rec"A":1,"B":2
      R2 := Rec"A":3,"B":4 // in practice, some loop generates these...

      Recs := R1,R2

      _, err = stmt.ExecMany(Recs)


      Does this kind of syntax exist for sqlite?



      I'm currently doing the following:



      var Recs Rec

      batch := 0
      for i:=0;i<100000; i++
      R := Rec"A":i,"B":i+1
      Recs = append(Recs, R)
      if (batch % 100)
      tx, err := db.Begin()
      stmt, err := db.Prepare("INSERT INTO Recs(a, b) values(?,?)")
      for _, r := range Recs
      _, err = stmt.Exec(r.A, r.B)
      checkErr(err)

      err = tx.Commit()
      checkErr(err)
      Recs = Recs[0:0]
      batch = 1
      else
      batch = batch + 1




      but it is super slow, and I keep errorring out with errors like:



      panic: database is locked.






      database go sqlite3






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 14 '18 at 0:02







      Mittenchops

















      asked Nov 13 '18 at 21:44









      MittenchopsMittenchops

      6,4602265137




      6,4602265137






















          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53289972%2ffast-batch-insertmany-construct-in-go-sqlite3%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53289972%2ffast-batch-insertmany-construct-in-go-sqlite3%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Barbados

          How to read a connectionString WITH PROVIDER in .NET Core?

          Node.js Script on GitHub Pages or Amazon S3