Release ems php script

02/11/2012 14:27 ThElitEyeS#1
What is ems ?
Its functions for sql server

Its using odbc.

But those functions are much easier.
Download:
[Only registered and activated users can see links. Click Here To Register...]
How to use ?
1. ms_connect();
Quote:
{
3 Parameter's
1 = host
2 = username
3 = password
}
2.ms_select_db();
Quote:
1 Parameter
Database name
3.ms_query();
Quote:
1 Parameter
SQL Query
4.ms_num_rows();
Quote:
1 Parameter
SQL Result by ms_query();
5.ms_get_affect();
Quote:
1 Parameter
SQL Result by ms_query();
6.ms_get_data();
Quote:
1 Parameter
SQL Result by ms_query();
7.ms_unset();
Quote:
1 Parameter
SQL Result by ms_query();
02/11/2012 16:59 Ahmed Abdelhady#2
Thanks Bro
02/11/2012 17:02 H34D_B4NG3R#3
nice :D
02/11/2012 19:49 hamada619#4
thanks alot
02/11/2012 21:14 •ᵔBeGodOfWarᵔ•#5
deserve my thank
02/11/2012 21:30 Schickl#6
How is this easier?
I only see some of the functions odbc has with different names lol

ITT: People who don't even know what this is:facepalm:
02/11/2012 21:36 ThElitEyeS#7
Quote:
Originally Posted by Schickl View Post
How is this easier?
I only see some of the functions odbc has with different names lol

ITT: People who don't even know what this is:facepalm:
:awesome: simple my dude don't like it don't use it
look inside it next time before writing your shit.

Tell me
who is easier
this
odbc_connect("Driver={SQL Server}; Server={".$host."}", $username, $password)
or this
ms_connect($host, $username, $password);
,
ms_select_db not exist at odbc
,
odbc_exec($connect, "query");
or this
ms_query("query");
,
ms_num_rows(); ! = odbc_num_rows
ms_num_rows(); return rows count
odbc_num_rows return affected rows count
02/11/2012 22:43 Schickl#8
Quote:
Originally Posted by ThElitEyeS View Post
:awesome: simple my dude don't like it don't use it
look inside it next time before writing your shit.

Tell me
who is easier
this
odbc_connect("Driver={SQL Server}; Server={".$host."}", $username, $password)
or this
ms_connect($host, $username, $password);
,
ms_select_db not exist at odbc
,
odbc_exec($connect, "query");
or this
ms_query("query");
,
ms_num_rows(); ! = odbc_num_rows
ms_num_rows(); return rows count
odbc_num_rows return affected rows count
I'm not going to register on your site just to download this lol

oohh
You safe some chars when connecting hurrrrrrrr
And there's no function to select the db, because you actually do this when connecting

oh and hurr durr you don't need to pass the connection variable when you want to execute the query

I hope you made a class, because else I wonder how it should be possible to have 2 or more connections with this functions

oh and returning the rows AFFECTED by the query makes actually a lot more sense than just the total rows
02/11/2012 23:52 kevin_owner#9
Seriously how is this easier than PDO? This stuff doesn't even protect you from sql injections.

And it's function based so that's well a minus in my opinion. So is there any reason I should be using this instead of PDO which is much easier and clearer and not to forget more secure and it supports a lot of databases.
02/12/2012 00:05 Dr.Abdelfattah#10
hmm Release better than nothing !
Nice work keep it up :)
02/12/2012 01:25 Schickl#11
Quote:
Originally Posted by kevin_owner View Post
Seriously how is this easier than PDO? This stuff doesn't even protect you from sql injections.

And it's function based so that's well a minus in my opinion. So is there any reason I should be using this instead of PDO which is much easier and clearer and not to forget more secure and it supports a lot of databases.
Not to forget that there are way more functions!
02/12/2012 12:16 ThElitEyeS#12
kevin_owner, Schickl
Its no hard [DONT LIKE IT DONT USE IT]