Changeset 85
- Timestamp:
- 02/11/08 12:13:14 (10 months ago)
- Files:
-
- trunk/dbi/mysql/MysqlPreparedStatement.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dbi/mysql/MysqlPreparedStatement.d
r84 r85 379 379 ~this() 380 380 { 381 mysql_stmt_close(stmt); 382 stmt = null; 381 if (stmt !is null) { 382 mysql_stmt_close(stmt); 383 stmt = null; 384 } 383 385 } 384 386
