26 lines
559 B
TypeScript
26 lines
559 B
TypeScript
import sqlite from 'better-sqlite3'
|
|
|
|
import { sunriseDB } from '../helpers/database.helpers.js'
|
|
|
|
export default function getNextContractId(
|
|
contractId: number | string
|
|
): number | undefined {
|
|
const database = sqlite(sunriseDB, { readonly: true })
|
|
|
|
const result = database
|
|
.prepare(
|
|
`select contractId
|
|
from Contracts
|
|
where recordDelete_timeMillis is null
|
|
and contractId > ?
|
|
order by contractId
|
|
limit 1`
|
|
)
|
|
.pluck()
|
|
.get(contractId) as number | undefined
|
|
|
|
database.close()
|
|
|
|
return result
|
|
}
|