Skip to content

Commit 0968a63

Browse files
committed
Microsoft.Data.Sqlite: Use Span overload of sqlite3_prepare
Removes a lot of unnecessary allocations and conversions from utf8 Fixes #16202
1 parent 3f5dc2c commit 0968a63

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

src/Microsoft.Data.Sqlite.Core/SqliteCommand.cs

+11-6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using System.Diagnostics;
99
using System.Diagnostics.CodeAnalysis;
1010
using System.Linq;
11+
using System.Text;
1112
using System.Threading;
1213
using System.Threading.Tasks;
1314
using Microsoft.Data.Sqlite.Properties;
@@ -470,15 +471,19 @@ private IEnumerable<sqlite3_stmt> PrepareAndEnumerateStatements(Stopwatch timer)
470471
{
471472
DisposePreparedStatements(disposing: false);
472473

474+
var byteCount = Encoding.UTF8.GetByteCount(_commandText);
475+
var sql = new byte[byteCount + 1];
476+
Encoding.UTF8.GetBytes(_commandText, 0, _commandText.Length, sql, 0);
477+
473478
int rc;
474479
sqlite3_stmt stmt;
475-
var tail = _commandText;
480+
var start = 0;
476481
do
477482
{
478483
timer.Start();
479484

480-
string nextTail;
481-
while (IsBusy(rc = sqlite3_prepare_v2(_connection!.Handle, tail, out stmt, out nextTail)))
485+
ReadOnlySpan<byte> tail;
486+
while (IsBusy(rc = sqlite3_prepare_v2(_connection!.Handle, sql.AsSpan(start), out stmt, out tail)))
482487
{
483488
if (CommandTimeout != 0
484489
&& timer.ElapsedMilliseconds >= CommandTimeout * 1000L)
@@ -490,14 +495,14 @@ private IEnumerable<sqlite3_stmt> PrepareAndEnumerateStatements(Stopwatch timer)
490495
}
491496

492497
timer.Stop();
493-
tail = nextTail;
498+
start = sql.Length - tail.Length;
494499

495500
SqliteException.ThrowExceptionForRC(rc, _connection.Handle);
496501

497502
// Statement was empty, white space, or a comment
498503
if (stmt.IsInvalid)
499504
{
500-
if (tail.Length != 0)
505+
if (start < byteCount)
501506
{
502507
continue;
503508
}
@@ -509,7 +514,7 @@ private IEnumerable<sqlite3_stmt> PrepareAndEnumerateStatements(Stopwatch timer)
509514

510515
yield return stmt;
511516
}
512-
while (tail.Length != 0);
517+
while (start < byteCount);
513518

514519
_prepared = true;
515520
}

0 commit comments

Comments
 (0)