-
-
Notifications
You must be signed in to change notification settings - Fork 464
Closed
Description
sourcemod/plugins/include/dbi.inc
Lines 540 to 560 in 81dc80f
| /** | |
| * Returns a driver Handle from a name string. | |
| * | |
| * If the driver is not found, SourceMod will attempt | |
| * to load an extension named dbi.<name>.ext.[dll|so]. | |
| * | |
| * @param name Driver identification string, or an empty | |
| * string to return the default driver. | |
| * @return Driver Handle, or INVALID_HANDLE on failure. | |
| */ | |
| native Handle SQL_GetDriver(const char[] name=""); | |
| /** | |
| * Reads the driver of an opened database. | |
| * | |
| * @param database Database Handle. | |
| * @param ident Option buffer to store the identification string. | |
| * @param ident_length Maximum length of the buffer. | |
| * @return Driver Handle. | |
| */ | |
| native Handle SQL_ReadDriver(Handle database, char[] ident="", int ident_length=0); |
These natives should return
Driver, not Handle.Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels