Databases and Their Implementations Programming Software Development by AndreRet …option as per picture1 below. [*]Also download the MyFirstDatabase.Sql text file attached below. This will be …you're going to limit the user to the MyFirstDatabase database. 8. Scroll down to the Database-specific …Privileges section and select the MyFirstDatabase database (see Figure 13). [ATTACH]20159[/ATTACH]Figure… displaying the last insert id Programming Web Development by mike7510uk …]MyConnection.ConnectionString = [COLOR=#800000]"Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\myfirstdatabase.mdf;Integrated Security=True;User Instance=True" [/COLOR]MyConnection… Insert Record into SQL2005 from c Sharp DataGridView Programming Software Development by yousafc# … below try { string con = "Data Source = FLOWER-PC;Database = MYFIRSTDATABASE;Integrated Security = True"; SqlConnection cn = new SqlConnection(con); cn… Re: Setting up a Testing Server Programming Web Development by ebanbury … read through Part1. I can't find the zip file MyFirstDatabase.sql? I actually think all my xampp and phpmyadmin is… Re: Databases and Their Implementations Programming Software Development by HELL DRAGON Nice!!! , thank you very much for your efforts , keep up the good work I'm newbie to database's and this helped me a lot. Thank you :) Re: Databases and Their Implementations Programming Software Development by AndreRet It was a pleasure.:) Re: Databases and Their Implementations Programming Software Development by disavowed10 Mac! Good stuff! Noob here too. I hope you get enough requests for OS X users. Thanks! Re: Databases and Their Implementations Programming Software Development by AndreRet We'll see how it goes, so far you're the only one.:) I probably will eventually, if time allows. I'm busy with parts 2 and 3, so it will be little while. It is however not so a big thing to get it sorted in Mac.;) Re: Databases and Their Implementations Programming Software Development by reygcalantaol Well, I can suggest [URL="http://www.heidisql.com/"]HeidiSQL[/URL] a fast and robust MySQL front-end software. Re: Databases and Their Implementations Programming Software Development by htmlCoder101 nice job! this seems like a mini tutorial! thanks for this one! Re: Databases and Their Implementations Programming Software Development by Ken Peterson Great Work ! if you have image upload tutorial please share here. Thanks. Re: Databases and Their Implementations Programming Software Development by kepech [QUOTE=;][/QUOTE] As a MAC OS X user, I would like a Mac installation tutorial Thanks Re: Databases and Their Implementations Programming Software Development by nashrudin Hey, that's good and helpful, thanks Re: Databases and Their Implementations Programming Software Development by AndreRet Thank you all, I have been off for a while, will still post tutorial 2 3 and 4 soon, thanks for the recognition. :) Re: Databases and Their Implementations Programming Software Development by Samware really helped.have you uploadedpart 2 and 3? Re: Databases and Their Implementations Programming Software Development by AndreRet I am actually busy with it as we speak. I had to take a break and build my business. Started spending time here again. Very soon. :) Re: Databases and Their Implementations Programming Software Development by rajyalakshmi.matta How to store multiple records obtained through select command in Visual Basic? ADODB. Recordset is not working. Is there anyother way to do this. Can anyone please help me. Thanks and regards Re: Databases and Their Implementations Programming Software Development by hefaz Thanks alot, that was helpfull for my project. have you updated next parts? Re: Databases and Their Implementations Programming Software Development by jssavage1987 i was wondering have you uploaded part 2 and 3? i liked the tutorial so far Re: Databases and Their Implementations Programming Software Development by twexpresscars The database implementation or deployment is the process of installation of database software, configuration and customization, running, testing, integrating with applications, and training the users. Re: displaying the last insert id Programming Web Development by shasur Use Stored Procedures for inserting values and use @@Identity to get the last inserted ID (hope this is your primary key) Cheers Shasur Re: displaying the last insert id Programming Web Development by Elmo_loves_you Hi Guys I have a stored procedure where I am adding a new record to a table and I have RETURN SCOPE_IDENTITY() at the end...on testing it returns the ID value that I want. However I want to be able to use this ID value and pass it to a variable within my C# code which I could then use to pass into another stored procedure to add data to a new …