asfernandes / node-firebird-drivers

Node.js Firebird Drivers
MIT License
53 stars 17 forks source link

Add method Statement.setCursorName #102

Closed asfernandes closed 2 years ago

asfernandes commented 2 years ago
/**
 * Set cursor name of a SELECT ... FOR UPDATE statement.
 *
 * Use with ResultSet.fetch({ fetchSize: 1 }) and other statement with WHERE CURRENT OF <cursorName>.
 */
setCursorName(cursorName: string): Promise<void>;