This is my first time using T-SQL I am currently trying to get the last inserted ID from an INSERT statement in T-SQL using this query: As you’ve guessed, ID_TICKET is the identity, with auto_increment. When I run this through MS SQL server management studio, I get the intended result : one row, with a unique lastId column containing the
Tag: pear
How can I install a pecl extension like mcrypt in DDEV-Local’s web container?
In PHP 7.2 and higher the mcrypt extension is no longer available, but my project depends on it. I know that the project shouldn’t be using something as ancient as mcrypt, but I don’t have any say in this. I know that mcrypt was removed from PHP7.2+ but is still in pecl. What can I do for this project to
Using Libsodium with PHP on WAMP
I’m having really hard trouble installing libsodium on my local server (WAMP64). I used this guide and many others, but still no luck. I successfully installed PEAR but I can’t use it to install the PHP wrapper of libsodium. Can someone post a little guide step by step to help me? I would appreciate help installing Halite, wich needs libsodium,
PHP XML serializer
Is there some php libraries which implement serialization of data to XML-format like serialize() and unserialize() (with restoring objects from XML) functions of objects with private and protected …