asfernandes / node-firebird-drivers

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

Add method Statement.setCursorName #102

Closed asfernandes closed 3 years ago

asfernandes commented 3 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>;